[Previous] [Contents] [Next]

mlockall()

Lock a process's address space

Synopsis:

#include <sys/mman.h>

int mlockall( int flags );

Library:

libc

Description:

The mlockall() function isn't currently supported.

Returns:

-1 to indicate an error (errno is set.)

Errors:

ENOSYS
The mlockall() function isn't currently supported.

Classification:

POSIX 1003.1 (Realtime Extensions)

Safety:
Cancellation point No
Interrupt handler No
Signal handler No
Thread Yes

See also:

mlock(), munlock(), munlockall()


[Previous] [Contents] [Next]