|
|||||||
|
|
MUNLOCKSection: Linux Programmer's Manual (2)Updated: 1995-11-26 Index Return to Main Contents 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 specified 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 <limits.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.ERRORS
CONFORMING TOPOSIX.1b, SVr4SEE ALSOmlock(2), mlockall(2), munlockall(2)
Index | ||||||
|
|
|
Home :: Copyright :: Privacy :: Credits :: Get a free Linuxinfor Email Account Document on this page is part of "Linuxinfor Man Pages in HTML Format: man2". See Index Page for more info about Authorship and Copyright. 1999-2008 Linuxinfor.com. No rights reserved. |