(thp_disable: bool)
| 677 | /// [`prctl(PR_SET_THP_DISABLE,…)`]: https://man7.org/linux/man-pages/man2/prctl.2.html |
| 678 | #[inline] |
| 679 | pub fn disable_transparent_huge_pages(thp_disable: bool) -> io::Result<()> { |
| 680 | unsafe { prctl_2args(PR_SET_THP_DISABLE, usize::from(thp_disable) as *mut _) }.map(|_r| ()) |
| 681 | } |
| 682 | |
| 683 | // |
| 684 | // PR_CAP_AMBIENT |
nothing calls this directly
no test coverage detected