Query: munlock
OS: redhat
Section: 2
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
MUNLOCK(2) Linux Programmer's Manual MUNLOCK(2)NAMEmunlock - reenable paging for some parts of memorySYNOPSIS#include <sys/mman.h> int munlock(const void *addr, size_t len);DESCRIPTIONmunlock reenables paging for the memory in the range starting at addr with length len bytes. All pages which contain a part of the speci- fied memory range can after calling munlock be moved to external swap space again by the kernel. Memory locks do not stack, i.e., pages which have been locked several times by calls to mlock or mlockall will be unlocked by a single call to munlock for the corresponding range or by munlockall. Pages which are mapped to several locations or by several processes stay locked into RAM as long as they are locked at least at one location or by at least one process. On POSIX systems on which mlock and munlock are available, _POSIX_MEMLOCK_RANGE is defined in <unistd.h> and the value PAGESIZE from <lim- its.h> indicates the number of bytes per page.RETURN VALUEOn success, munlock returns zero. On error, -1 is returned, errno is set appropriately, and no changes are made to any locks in the address space of the process.ERRORSENOMEM Some of the specified address range does not correspond to mapped pages in the address space of the process. EINVAL len was not a positive number.CONFORMING TOPOSIX.1b, SVr4SEE ALSOmlock(2), mlockall(2), munlockall(2) Linux 1.3.43 1995-11-26 MUNLOCK(2)
Related Man Pages |
---|
mlock(2) - redhat |
munlock(3) - linux |
mlock(3) - osf1 |
munlock(3) - osf1 |
munlock(3c) - x11r4 |
Similar Topics in the Unix Linux Community |
---|
Paging |
Paging space definition |
paging |
Eliminating paging space and interpreting memory utilization |
which setting defines behaviour when paging space runs full ? |