xref: /freebsd/lib/libc/stdio/flockfile.3 (revision fa9896e082a1046ff4fbc75fcba4d18d1f2efc19)
14d844c09STim J. Robbins.\" Copyright (c) 2003 Tim J. Robbins
24d844c09STim J. Robbins.\" All rights reserved.
34d844c09STim J. Robbins.\"
44d844c09STim J. Robbins.\" Redistribution and use in source and binary forms, with or without
54d844c09STim J. Robbins.\" modification, are permitted provided that the following conditions
64d844c09STim J. Robbins.\" are met:
74d844c09STim J. Robbins.\" 1. Redistributions of source code must retain the above copyright
84d844c09STim J. Robbins.\"    notice, this list of conditions and the following disclaimer.
94d844c09STim J. Robbins.\" 2. Redistributions in binary form must reproduce the above copyright
104d844c09STim J. Robbins.\"    notice, this list of conditions and the following disclaimer in the
114d844c09STim J. Robbins.\"    documentation and/or other materials provided with the distribution.
124d844c09STim J. Robbins.\"
134d844c09STim J. Robbins.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
144d844c09STim J. Robbins.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
154d844c09STim J. Robbins.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
164d844c09STim J. Robbins.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
174d844c09STim J. Robbins.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
184d844c09STim J. Robbins.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
194d844c09STim J. Robbins.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
204d844c09STim J. Robbins.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
214d844c09STim J. Robbins.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
224d844c09STim J. Robbins.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
234d844c09STim J. Robbins.\" SUCH DAMAGE.
244d844c09STim J. Robbins.\"
254d844c09STim J. Robbins.Dd January 10, 2003
264d844c09STim J. Robbins.Dt FLOCKFILE 3
274d844c09STim J. Robbins.Os
284d844c09STim J. Robbins.Sh NAME
294d844c09STim J. Robbins.Nm flockfile ,
304d844c09STim J. Robbins.Nm ftrylockfile ,
314d844c09STim J. Robbins.Nm funlockfile
324d844c09STim J. Robbins.Nd "stdio locking functions"
334d844c09STim J. Robbins.Sh LIBRARY
344d844c09STim J. Robbins.Lb libc
354d844c09STim J. Robbins.Sh SYNOPSIS
364d844c09STim J. Robbins.In stdio.h
374d844c09STim J. Robbins.Ft void
384d844c09STim J. Robbins.Fn flockfile "FILE *stream"
394d844c09STim J. Robbins.Ft int
404d844c09STim J. Robbins.Fn ftrylockfile "FILE *stream"
414d844c09STim J. Robbins.Ft void
424d844c09STim J. Robbins.Fn funlockfile "FILE *stream"
434d844c09STim J. Robbins.Sh DESCRIPTION
444d844c09STim J. RobbinsThese functions provide explicit application-level locking of stdio streams.
454d844c09STim J. RobbinsThey can be used to avoid output from multiple threads being interspersed,
46d2b9b6b1SAlfred Perlsteininput being dispersed among multiple readers, and to avoid the overhead
474d844c09STim J. Robbinsof locking the stream for each operation.
484d844c09STim J. Robbins.Pp
494d844c09STim J. RobbinsThe
504d844c09STim J. Robbins.Fn flockfile
514d844c09STim J. Robbinsfunction acquires an exclusive lock on the specified stream.
524d844c09STim J. RobbinsIf another thread has already locked the stream,
534d844c09STim J. Robbins.Fn flockfile
544d844c09STim J. Robbinswill block until the lock is released.
554d844c09STim J. Robbins.Pp
564d844c09STim J. RobbinsThe
574d844c09STim J. Robbins.Fn ftrylockfile
584d844c09STim J. Robbinsfunction is a non-blocking version of
594d844c09STim J. Robbins.Fn flockfile ;
604d844c09STim J. Robbinsif the lock cannot be acquired immediately,
614d844c09STim J. Robbins.Fn ftrylockfile
624d844c09STim J. Robbinsreturns non-zero instead of blocking.
634d844c09STim J. Robbins.Pp
644d844c09STim J. RobbinsThe
654d844c09STim J. Robbins.Fn funlockfile
664d844c09STim J. Robbinsfunction releases the lock on a stream acquired by an earlier call to
674d844c09STim J. Robbins.Fn flockfile
684d844c09STim J. Robbinsor
694d844c09STim J. Robbins.Fn ftrylockfile .
704d844c09STim J. Robbins.Pp
714d844c09STim J. RobbinsThese functions behave as if there is a lock count associated
724d844c09STim J. Robbinswith each stream.
734d844c09STim J. RobbinsEach time
744d844c09STim J. Robbins.Fn flockfile
754d844c09STim J. Robbinsis called on the stream, the count is incremented,
764d844c09STim J. Robbinsand each time
774d844c09STim J. Robbins.Fn funlockfile
784d844c09STim J. Robbinsis called on the stream, the count is decremented.
794d844c09STim J. RobbinsThe lock is only actually released when the count reaches zero.
804d844c09STim J. Robbins.Sh RETURN VALUES
814d844c09STim J. RobbinsThe
824d844c09STim J. Robbins.Fn flockfile
834d844c09STim J. Robbinsand
844d844c09STim J. Robbins.Fn funlockfile
854d844c09STim J. Robbinsfunctions return no value.
864d844c09STim J. Robbins.Pp
874d844c09STim J. RobbinsThe
884d844c09STim J. Robbins.Fn ftrylockfile
8983bb3b49STim J. Robbinsfunction
904d844c09STim J. Robbinsreturns zero if the stream was successfully locked,
914d844c09STim J. Robbinsnon-zero otherwise.
924d844c09STim J. Robbins.Sh SEE ALSO
934d844c09STim J. Robbins.Xr getc_unlocked 3 ,
944d844c09STim J. Robbins.Xr putc_unlocked 3
954d844c09STim J. Robbins.Sh STANDARDS
964d844c09STim J. RobbinsThe
974d844c09STim J. Robbins.Fn flockfile ,
984d844c09STim J. Robbins.Fn ftrylockfile
994d844c09STim J. Robbinsand
1004d844c09STim J. Robbins.Fn funlockfile
1014d844c09STim J. Robbinsfunctions conform to
1024d844c09STim J. Robbins.St -p1003.1-2001 .
103