(pgid: Pid, waitopts: WaitOptions)
| 368 | #[cfg(not(any(target_os = "espidf", target_os = "vita", target_os = "wasi")))] |
| 369 | #[inline] |
| 370 | pub(crate) fn waitpgid(pgid: Pid, waitopts: WaitOptions) -> io::Result<Option<(Pid, WaitStatus)>> { |
| 371 | _waitpid(-pgid.as_raw_nonzero().get(), waitopts) |
| 372 | } |
| 373 | |
| 374 | #[cfg(not(any(target_os = "espidf", target_os = "vita", target_os = "wasi")))] |
| 375 | #[inline] |
nothing calls this directly
no test coverage detected