()
| 44 | /// [`prctl(PR_GET_KEEPCAPS,…)`]: https://man7.org/linux/man-pages/man2/prctl.2.html |
| 45 | #[inline] |
| 46 | pub fn get_keep_capabilities() -> io::Result<bool> { |
| 47 | unsafe { prctl_1arg(PR_GET_KEEPCAPS) }.map(|r| r != 0) |
| 48 | } |
| 49 | |
| 50 | const PR_SET_KEEPCAPS: c_int = 8; |
| 51 |
nothing calls this directly
no test coverage detected