(addr: *mut c::c_void)
| 341 | |
| 342 | #[inline] |
| 343 | pub(crate) unsafe fn kernel_brk(addr: *mut c::c_void) -> io::Result<*mut c_void> { |
| 344 | // This is non-`readonly`, to prevent loads from being reordered past it. |
| 345 | ret_void_star(syscall!(__NR_brk, addr)) |
| 346 | } |
nothing calls this directly
no test coverage detected