(ptr: *mut c_void, len: usize)
| 169 | /// [glibc]: https://sourceware.org/glibc/manual/latest/html_node/Memory_002dmapped-I_002fO.html#index-munmap |
| 170 | #[inline] |
| 171 | pub unsafe fn munmap(ptr: *mut c_void, len: usize) -> io::Result<()> { |
| 172 | backend::mm::syscalls::munmap(ptr, len) |
| 173 | } |
| 174 | |
| 175 | /// `mremap(old_address, old_size, new_size, flags)`—Resize, modify, and/or |
| 176 | /// move a memory mapping. |
no outgoing calls