MLOCKALL(2) | System Calls Manual | MLOCKALL(2) |
mlockall
,
munlockall
— lock (unlock)
the address space of a process
Standard C Library (libc, -lc)
#include
<sys/mman.h>
int
mlockall
(int
flags);
int
munlockall
(void);
The
mlockall
()
system call locks into memory the physical pages associated with the address
space of a process until the address space is unlocked, the process exits,
or execs another program image.
The following flags affect the behavior of
mlockall
():
MCL_CURRENT
MCL_FUTURE
Since physical memory is a potentially scarce resource, processes
are limited in how much they can lock down. A single process can lock the
minimum of a system-wide “wired pages” limit
vm.max_wired and the per-process
RLIMIT_MEMLOCK
resource limit.
If
security.bsd.unprivileged_mlock is set to 0 these
calls are only available to the super-user. If
vm.old_mlock is set to 1 the per-process
RLIMIT_MEMLOCK
resource limit will not be applied
for
mlockall
()
calls.
The
munlockall
()
call unlocks any locked memory regions in the process address space. Any
regions mapped after an munlockall
() call will not
be locked.
A return value of 0 indicates that the call succeeded and all pages in the range have either been locked or unlocked. A return value of -1 indicates an error occurred and the locked status of all pages in the range remains unchanged. In this case, the global location errno is set to indicate the error.
mlockall
() will fail if:
EINVAL
]ENOMEM
]EAGAIN
]EPERM
]The mlockall
() and
munlockall
() functions are believed to conform to
IEEE Std 1003.1-2001 (“POSIX.1”).
The mlockall
() and
munlockall
() functions first appeared in
FreeBSD 5.1.
The per-process resource limit is a limit on the amount of virtual memory locked, while the system-wide limit is for the number of locked physical pages. Hence a process with two distinct locked mappings of the same physical page counts as 2 pages against the per-process limit and as only a single page in the system limit.
December 25, 2012 | Debian |