()
| 348 | #[inline] |
| 349 | #[doc(alias = "PR_GET_TIMING")] |
| 350 | pub fn timing_method() -> io::Result<TimingMethod> { |
| 351 | unsafe { prctl_1arg(PR_GET_TIMING) }.and_then(TryInto::try_into) |
| 352 | } |
| 353 | |
| 354 | const PR_SET_TIMING: c_int = 14; |
| 355 |
nothing calls this directly
no test coverage detected