module documentation

Wrapper around mlockall(2).

Function Mlockall Lock current process' virtual address space into RAM.
Constant _MCL_CURRENT Undocumented
Constant _MCL_FUTURE Undocumented
def Mlockall(_ctypes=ctypes):

Lock current process' virtual address space into RAM.

This is equivalent to the C call mlockall(MCL_CURRENT | MCL_FUTURE). See mlockall(2) for more details. This function requires the ctypes module.

Raises
errors.NoCtypesErrorIf the ctypes module is not found
_MCL_CURRENT: int =

Undocumented

Value
1
_MCL_FUTURE: int =

Undocumented

Value
2