diff options
author | des <des@FreeBSD.org> | 2007-05-10 14:43:31 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2007-05-10 14:43:31 +0000 |
commit | 5d25ea6b6214552539112dbc8d1bdc8f79460dd6 (patch) | |
tree | 102b7b1c4af852c306e9fbb22b01198df98feccd /lib/libutil/flopen.3 | |
parent | c8214b677dbe65514eabcf78ca9c56f7bdf84aed (diff) | |
download | FreeBSD-src-5d25ea6b6214552539112dbc8d1bdc8f79460dd6.zip FreeBSD-src-5d25ea6b6214552539112dbc8d1bdc8f79460dd6.tar.gz |
I'm tired of seeing this done incorrectly and non-portably, so add a
flopen(3) function which reliably opens and locks a file.
MFC after: 3 weeks
Diffstat (limited to 'lib/libutil/flopen.3')
-rw-r--r-- | lib/libutil/flopen.3 | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/lib/libutil/flopen.3 b/lib/libutil/flopen.3 new file mode 100644 index 0000000..53a2132 --- /dev/null +++ b/lib/libutil/flopen.3 @@ -0,0 +1,79 @@ +.\"- +.\" Copyright (c) 2007 Dag-Erling Coïdan Smørgrav +.\" All rights reserved. +.\" +.\" Redistribution and use in source and binary forms, with or without +.\" modification, are permitted provided that the following conditions +.\" are met: +.\" 1. Redistributions of source code must retain the above copyright +.\" notice, this list of conditions and the following disclaimer. +.\" 2. Redistributions in binary form must reproduce the above copyright +.\" notice, this list of conditions and the following disclaimer in the +.\" documentation and/or other materials provided with the distribution. +.\" +.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND +.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE +.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +.\" SUCH DAMAGE. +.\" +.\" $FreeBSD$ +.\" +.Dd May 10, 2007 +.Dt FLOPEN 3 +.Os +.Sh NAME +.Nm flopen +.Nd "Reliably open and lock a file" +.Sh LIBRARY +.Lb libutil +.Sh SYNOPSIS +.In sys/fcntl.h +.In libutil.h +.Ft int +.Fn flopen "const char *path" "int flags" +.Ft int +.Fn flopen "const char *path" "int flags" "mode_t mode" +.Sh DESCRIPTION +The +.Fn flopen +function opens or creates a file and acquires an exclusive lock on it. +It is essentially equivalent with calling +.Fn open +with the same parameters followed by +.Fn flock +with an +.Va operation +argument of +.Dv LOCK_EX , +except that +.Fn flopen +will attempt to detect and handle races that may occur between opening +/ creating the file and locking it. +Thus, it is well suited for opening lock files, PID files, spool +files, mailboxes and other kinds of files which are used for +synchronization between processes. +.Pp +As with +.Fn flopen , +the additional +.Va mode +argument is required if +.Va flags +includes +.Dv O_CREAT . +.Sh SEE ALSO +.Xr flock 2 , +.Xr open 2 +.Sh AUTHORS +.An -nosplit +The +.Nm +function and this manual page were written by +.An Dag-Erling Sm\(/orgrav Aq des@FreeBSD.org . |