CINXE.COM

flockfile

<html> <head> <title>flockfile</title> <META NAME="KEYWORDS" CONTENT="flockfile"> </head> <body BGCOLOR="#ffffff" LINK="#0000ff" VLINK="#0000ff" ALINK="#0000ff" TEXT="#000000"> <center> <h1><b>flockfile</b></h1></center> <PRE> <STRONG><A HREF="/man3/FLOCKFILE">FLOCKFILE(3)</A></STRONG> Linux Programmer's Manual <STRONG><A HREF="/man3/FLOCKFILE">FLOCKFILE(3)</A></STRONG> NAME flockfile, ftrylockfile, funlockfile - lock FILE for stdio SYNOPSIS #include &lt;stdio.h&gt; void flockfile(FILE *filehandle); int ftrylockfile(FILE *filehandle); void funlockfile(FILE *filehandle); Feature Test Macro Requirements for glibc (see <STRONG><A HREF="/man7/feature_test_macros">feature_test_macros(7)</A></STRONG>): All functions shown above: /* Since glibc 2.24: */ _POSIX_C_SOURCE &gt;= 199309L || /* Glibc versions &lt;= 2.23: */ _POSIX_C_SOURCE || /* Glibc versions &lt;= 2.19: */ _BSD_SOURCE || _SVID_SOURCE DESCRIPTION The stdio functions are thread-safe. This is achieved by assigning to each FILE object a lockcount and (if the lockcount is nonzero) an own- ing thread. For each library call, these functions wait until the FILE object is no longer locked by a different thread, then lock it, do the requested I/O, and unlock the object again. (Note: this locking has nothing to do with the file locking done by functions like <STRONG><A HREF="/man2/flock">flock(2)</A></STRONG> and <STRONG><A HREF="/man3/lockf">lockf(3)</A></STRONG>.) All this is invisible to the C-programmer, but there may be two reasons to wish for more detailed control. On the one hand, maybe a series of I/O actions by one thread belongs together, and should not be inter- rupted by the I/O of some other thread. On the other hand, maybe the locking overhead should be avoided for greater efficiency. To this end, a thread can explicitly lock the FILE object, then do its series of I/O actions, then unlock. This prevents other threads from coming in between. If the reason for doing this was to achieve greater efficiency, one does the I/O with the nonlocking versions of the stdio functions: with <STRONG><A HREF="/man3/getc_unlocked">getc_unlocked(3)</A></STRONG> and <STRONG><A HREF="/man3/putc_unlocked">putc_unlocked(3)</A></STRONG> instead of <STRONG><A HREF="/man3/getc">getc(3)</A></STRONG> and <STRONG><A HREF="/man3/putc">putc(3)</A></STRONG>. The flockfile() function waits for *filehandle to be no longer locked by a different thread, then makes the current thread owner of *filehan- dle, and increments the lockcount. The funlockfile() function decrements the lock count. The ftrylockfile() function is a nonblocking version of flockfile(). It does nothing in case some other thread owns *filehandle, and it ob- tains ownership and increments the lockcount otherwise. RETURN VALUE The ftrylockfile() function returns zero for success (the lock was ob- tained), and nonzero for failure. ERRORS None. ATTRIBUTES For an explanation of the terms used in this section, see at- <STRONG><A HREF="/man7/tributes">tributes(7)</A></STRONG>. +------------------------------+---------------+---------+ |Interface | Attribute | Value | +------------------------------+---------------+---------+ |flockfile(), ftrylockfile(), | Thread safety | MT-Safe | |funlockfile() | | | +------------------------------+---------------+---------+ CONFORMING TO POSIX.1-2001, POSIX.1-2008. AVAILABILITY These functions are available when _POSIX_THREAD_SAFE_FUNCTIONS is de- fined. SEE ALSO <STRONG><A HREF="/man3/unlocked_stdio">unlocked_stdio(3)</A></STRONG> COLOPHON This page is part of release 5.05 of the Linux man-pages project. A description of the project, information about reporting bugs, and the latest version of this page, can be found at https://www.kernel.org/doc/man-pages/. 2017-07-13 <STRONG><A HREF="/man3/FLOCKFILE">FLOCKFILE(3)</A></STRONG></PRE> <center> <h6>Man Pages Copyright Respective Owners. Site Copyright (C) 1994 - 2025 <a href="http://www.he.net">Hurricane Electric</a>. All Rights Reserved.</h6></center> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10