up | Inhaltsverzeichniss | Kommentar

Manual page for MLOCK(3)

mlock, munlock - lock (or unlock) pages in memory

SYNOPSIS

#include <sys/types.h>
int mlock(addr, len) caddr_t addr; size_t len;

int munlock(addr, len)
caddr_t addr;
size_t len;

DESCRIPTION

mlock() uses the mappings established for the address range [addr, addr + len) to identify memory object pages to be locked in memory. If the page identified by a mapping changes, such as occurs when a copy of a writable MAP_PRIVATE page is made upon the first store, the lock will be transferred to the newly copied private page.

munlock() removes locks established with mlock().

A given page may be locked multiple times by executing an mlock() through different mappings. That is, if two different processes lock the same page then the page will remain locked until both processes remove their locks. However, within a given mapping, page locks do not nest - multiple mlock() operations on the same address in the same process will all be removed with a single munlock(). Of course, a page locked in one process and mapped in another (or visible through a different mapping in the locking process) is still locked in memory. This fact can be used to create applications that do nothing other than lock important data in memory, thereby avoiding page I/O faults on references from other processes in the system.

If the mapping through which an mlock() has been performed is removed, an munlock() is implicitly performed. An munlock() is also performed implicitly when a page is deleted through file removal or truncation.

Locks established with mlock() are not inherited by a child process after a fork.2v

Due to the impact on system resources, the use of mlock() and munlock() is restricted to the super-user. Attempts to mlock() more memory than a system-specific limit will fail.

RETURN VALUES

mlock() and munlock() return:

0
on success.
-1
on failure and set errno to indicate the error.

ERRORS

EAGAIN
(mlock() only.) Some or all of the memory identified by the range [addr, addr + len) could not be locked due to insufficient system resources.
EINVAL
addr is not a multiple of the page size as returned by getpagesize.2
ENOMEM
Addresses in the range [addr, addr + len) are invalid for the address space of a process, or specify one or more pages which are not mapped.
EPERM
The process's effective user ID is not super-user.

SEE ALSO

fork.2v mctl.2 mlockall.3 mmap.2 munmap.2


index | Inhaltsverzeichniss | Kommentar

Created by unroff & hp-tools. © somebody (See intro for details). All Rights Reserved. Last modified 11/5/97