()
| 116 | #[inline] |
| 117 | #[doc(alias = "PR_GET_DUMPABLE")] |
| 118 | pub fn dumpable_behavior() -> io::Result<DumpableBehavior> { |
| 119 | unsafe { prctl_1arg(PR_GET_DUMPABLE) }.and_then(TryInto::try_into) |
| 120 | } |
| 121 | |
| 122 | const PR_SET_DUMPABLE: c_int = 4; |
| 123 |
nothing calls this directly
no test coverage detected