United States-English |
|
|
HP-UX Reference > Mmlockall(2)HP-UX 11i Version 3: February 2007 |
|
NAMEmlockall() — lock a process virtual address space in memory DESCRIPTIONThe mlockall() system call allows the calling process to lock its entire virtual address space into memory, making it immune to all routine swapping. flags may be one or both of the following:
Note that MCL_FUTURE does not imply MCL_CURRENT. munlockall() or munlock() can be used to unlock all or a portion of the address space locked with mlockall(). A single call to munlockall() removes all locks from the process virtual address space. An munlock() call results in only the specified pages being unlocked. Regardless of how many times a process locks a page, a single munlock() or munlockall() will unlock it. When memory is shared by multiple processes and mlocks are applied to the same physical page by multiple processes, a page remains locked until the last lock is removed from that page. Locks and MCL_FUTURE applied with mlockall() are not inherited by a child process. The user must have the MLOCK privilege. Although plock() and the mlock() family of functions may be used together in an application, each may affect the other in unexpected ways. This practice is not recommended. Security RestrictionsSome or all of the actions associated with this system call require the MLOCK privilege. Processes owned by the superuser have this privilege. Processes owned by other users may have this privilege, depending on system configuration. See privileges(5) for more information about privileged access on systems that support fine-grained privileges. RETURN VALUEmlockall() returns the following values:
ERRORSIf mlockall() fails, errno is set to one of the following values:
EXAMPLESThe following call to mlockall() locks the entire process virtual address space in memory and ensures that any future additions to the address space will also be locked in memory: mlockall( (MCL_CURRENT | MCL_FUTURE) ); SEE ALSOsetprivgrp(1M), getprivgrp(2), mlock(2), munlock(2), munlockall(2), plock(2), privileges(5). |
Printable version | ||
|