(enable: bool)
| 57 | /// [`prctl(PR_SET_KEEPCAPS,…)`]: https://man7.org/linux/man-pages/man2/prctl.2.html |
| 58 | #[inline] |
| 59 | pub fn set_keep_capabilities(enable: bool) -> io::Result<()> { |
| 60 | unsafe { prctl_2args(PR_SET_KEEPCAPS, usize::from(enable) as *mut _) }.map(|_r| ()) |
| 61 | } |
| 62 | |
| 63 | // |
| 64 | // PR_GET_NAME/PR_SET_NAME |
nothing calls this directly
no test coverage detected