(self)
| 117 | #[inline] |
| 118 | #[doc(alias = "WIFCONTINUED")] |
| 119 | pub fn continued(self) -> bool { |
| 120 | backend::process::wait::WIFCONTINUED(self.0) |
| 121 | } |
| 122 | |
| 123 | /// Returns the number of the signal that stopped the process, if the |
| 124 | /// process was stopped by a signal. |
no test coverage detected