[][src]Function nc::munlockall

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

Unlock memory.

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