[Previous] [Contents] [Next]

munlockall()

Unlock a process's address space

Synopsis:

#include <sys/mman.h>

int munlockall( void );

Library:

libc

Description:

The munlockall() function isn't currently supported.

Returns:

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

Errors:

ENOSYS
The munlockall() 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(), mlockall()


[Previous] [Contents] [Next]