(pid: Pid)
| 698 | #[cfg(feature = "process")] |
| 699 | #[inline] |
| 700 | pub(super) fn negative_pid<'a, Num: ArgNumber>(pid: Pid) -> ArgReg<'a, Num> { |
| 701 | pass_usize(pid.as_raw_nonzero().get().wrapping_neg() as usize) |
| 702 | } |
| 703 | |
| 704 | #[cfg(any(feature = "process", feature = "runtime"))] |
| 705 | impl<'a, Num: ArgNumber> From<Signal> for ArgReg<'a, Num> { |
nothing calls this directly
no test coverage detected