( )
| 570 | #[inline] |
| 571 | #[doc(alias = "PR_MCE_KILL_GET")] |
| 572 | pub fn machine_check_memory_corruption_kill_policy( |
| 573 | ) -> io::Result<MachineCheckMemoryCorruptionKillPolicy> { |
| 574 | let r = unsafe { prctl_1arg(PR_MCE_KILL_GET)? } as c_uint; |
| 575 | MachineCheckMemoryCorruptionKillPolicy::try_from(r) |
| 576 | } |
| 577 | |
| 578 | const PR_MCE_KILL: c_int = 33; |
| 579 |
nothing calls this directly
no test coverage detected