(pgid: Pid, waitopts: WaitOptions)
| 291 | |
| 292 | #[inline] |
| 293 | pub(crate) fn waitpgid(pgid: Pid, waitopts: WaitOptions) -> io::Result<Option<(Pid, WaitStatus)>> { |
| 294 | _waitpid(-pgid.as_raw_nonzero().get(), waitopts) |
| 295 | } |
| 296 | |
| 297 | #[inline] |
| 298 | pub(crate) fn _waitpid( |
nothing calls this directly
no test coverage detected