(self)
| 110 | #[inline] |
| 111 | #[doc(alias = "WIFSIGNALED")] |
| 112 | pub fn signaled(self) -> bool { |
| 113 | backend::process::wait::WIFSIGNALED(self.0) |
| 114 | } |
| 115 | |
| 116 | /// Returns whether the process has continued from a job control stop. |
| 117 | #[inline] |
no test coverage detected