[Linux manuál]
Návod, kniha: POSIX Programmer's Manual
int mlockall(int flags);
int munlockall(void);
mlockall, munlockall: zamknout / odemknout adresní prostor procesu (REÁLNÝ ČAS)
Originální popis anglicky: mlockall, munlockall - lock/unlock the address space of a process ( REALTIME)Návod, kniha: POSIX Programmer's Manual
STRUČNĚ
#include <sys/mman.h>POPIS / INSTRUKCE
The mlockall() function shall cause all of the pages mapped by the address space of a process to be memory-resident until unlocked or until the process exits or execs another process image. The flags argument determines whether the pages to be locked are those currently mapped by the address space of the process, those that are mapped in the future, or both. The flags argument is constructed from the bitwise-inclusive OR of one or more of the following symbolic constants, defined in <sys/mman.h>:- MCL_CURRENT
- Lock all of the pages currently mapped into the address space of the process.
- MCL_FUTURE
- Lock all of the pages that become mapped into the address
space of the process in the future, when those mappings are established.
NÁVRATOVÁ HODNOTA
Upon successful completion, the mlockall() function shall return a value of zero. Otherwise, no additional memory shall be locked, and the function shall return a value of -1 and set errno to indicate the error. The effect of failure of mlockall() on previously existing locks in the address space is unspecified. If it is supported by the implementation, the munlockall() function shall always return a value of zero. Otherwise, the function shall return a value of -1 and set errno to indicate the error.CHYBY / ERRORY
The mlockall() function shall fail if:- EAGAIN
- Some or all of the memory identified by the operation could not be locked when the call was made.
- EINVAL
- The flags argument is zero, or includes
unimplemented flags.
- ENOMEM
- Locking all of the pages currently mapped into the address space of the process would exceed an implementation-defined limit on the amount of memory that the process may lock.
- EPERM
- The calling process does not have the appropriate privilege
to perform the requested operation.
PŘÍKLADY POUŽITÍ
None.APPLICATION USAGE
None.RATIONALE
None.FUTURE DIRECTIONS
None.SOUVISEJÍCÍ
exec() , exit() , fork() , mlock() , munmap() , the Base Definitions volume of IEEE Std 1003.1-2001, <sys/mman.h>COPYRIGHT
Portions of this text are reprinted and reproduced in electronic form from IEEE Std 1003.1, 2003 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2003 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between this version and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html .| 2003 | IEEE/The Open Group |