[Previous] [Contents] [Next]

munlock()

Unlock a buffer

Synopsis:

#include <sys/mman.h>

int munlock( const void * addr, 
             size_t len );

Library:

libc

Description:

The munlock() function isn't currently supported.

Returns:

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

Errors:

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


[Previous] [Contents] [Next]