pub unsafe fn mlock(addr: *const c_void, length: size_t) -> Result<()>
Locks all memory pages that contain part of the address range with length bytes starting at addr.
length
addr
Locked pages never move to the swap area.
addr must meet all the requirements described in the mlock(2) man page.
mlock(2)