Function nc::munlockall[][src]

pub fn munlockall() -> Result<(), Errno>
Expand description

Unlock memory.

let ret = nc::mlockall(nc::MCL_CURRENT);
assert!(ret.is_ok());
let ret = nc::munlockall();
assert!(ret.is_ok());