[Previous] [Contents] [Next]

funlockfile()

Release ownership of a file

Synopsis:

#include <stdio.h>

void funlockfile( FILE* file );

Library:

libc

Description:

The funlockfile() function is used to release ownership of file granted to the thread. The behavior is undefined if a thread other than the current owner calls the funlockfile() function.

For more information, see flockfile().

Classification:

POSIX 1003.1

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

See also:

flockfile(), ftrylockfile(), getc_unlocked(), getchar_unlocked(), putc_unlocked(), putchar_unlocked()


[Previous] [Contents] [Next]