MUNLOCKSection: Linux Programmer's Manual (2)Updated: 2003-08-21 |
MUNLOCKSection: Linux Programmer's Manual (2)Updated: 2003-08-21 |
#include <sys/mman.h> int munlock(const void *addr, size_t len);
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.
Linux adds