(&self)
| 226 | /// create a core file. |
| 227 | #[inline] |
| 228 | pub fn killed(&self) -> bool { |
| 229 | self.raw_code() == bitcast!(backend::c::CLD_KILLED) |
| 230 | } |
| 231 | |
| 232 | /// Returns whether the process was terminated by a signal and did create a |
| 233 | /// core file. |
no test coverage detected