(&self)
| 213 | /// Returns whether the process is currently trapped. |
| 214 | #[inline] |
| 215 | pub fn trapped(&self) -> bool { |
| 216 | self.raw_code() == bitcast!(backend::c::CLD_TRAPPED) |
| 217 | } |
| 218 | |
| 219 | /// Returns whether the process has exited normally. |
| 220 | #[inline] |
no test coverage detected