1 .\" Copyright (c) 2003 Tim J. Robbins
2 .\" All rights reserved.
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\" notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\" notice, this list of conditions and the following disclaimer in the
11 .\" documentation and/or other materials provided with the distribution.
13 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 .\" $FreeBSD: src/lib/libc/stdio/flockfile.3,v 1.3 2003/01/13 01:29:14 tjr Exp $
34 .Nd "stdio locking functions"
40 .Fn flockfile "FILE *file"
42 .Fn ftrylockfile "FILE *file"
44 .Fn funlockfile "FILE *file"
46 These functions provide explicit application-level locking
47 of stdio FILE objects.
48 They can be used to avoid output from multiple threads being interspersed,
49 input being dispersed among multiple readers, and to avoid the overhead
50 of locking the object for each operation.
54 function acquires an exclusive lock on the specified object.
55 If another thread has already locked the object,
57 will block until the lock is released.
61 function is a non-blocking version of
63 if the lock cannot be acquired immediately,
65 returns non-zero instead of blocking.
69 function releases the lock on an object acquired by an earlier call to
74 These functions behave as if there is a lock count associated
78 is called on the object, the count is incremented,
81 is called on the object, the count is decremented.
82 The lock is only actually released when the count reaches zero.
88 functions return no value.
93 returns zero if the object was successfully locked,