⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 flock.2

📁 早期freebsd实现
💻 2
字号:
.\" Copyright (c) 1983, 1991, 1993.\"	The Regents of the University of California.  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..\" 3. All advertising materials mentioning features or use of this software.\"    must display the following acknowledgement:.\"	This product includes software developed by the University of.\"	California, Berkeley and its contributors..\" 4. Neither the name of the University nor the names of its contributors.\"    may be used to endorse or promote products derived from this software.\"    without specific prior written permission..\".\" THIS SOFTWARE IS PROVIDED BY THE REGENTS 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 REGENTS 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..\".\"     @(#)flock.2	8.2 (Berkeley) 12/11/93.\".Dd December 11, 1993.Dt FLOCK 2.Os BSD 4.2.Sh NAME.Nm flock.Nd "apply or remove an advisory lock on an open file".Sh SYNOPSIS.Fd #include <sys/file.h>.Fd #define	LOCK_SH	1	/* shared lock */.Fd #define	LOCK_EX	2	/* exclusive lock */.Fd #define	LOCK_NB	4	/* don't block when locking */.Fd #define	LOCK_UN	8	/* unlock */.Ft int.Fn flock "int fd" "int operation".Sh DESCRIPTION.Fn Flockapplies or removes an.Em advisorylock on the file associated with the file descriptor.Fa fd .A lock is applied by specifying an.Fa operationparameter that is one of.Dv LOCK_SHor.Dv LOCK_EXwith the optional addition of.Dv LOCK_NB .To unlockan existing lock.Dv operationshould be.Dv LOCK_UN ..PpAdvisory locks allow cooperating processes to performconsistent operations on files, but do not guaranteeconsistency (i.e., processes may still access fileswithout using advisory locks possibly resulting ininconsistencies)..PpThe locking mechanism allows two types of locks:.Em sharedlocks and.Em exclusivelocks.At any time multiple shared locks may be applied to a file,but at no time are multiple exclusive, or both shared and exclusive,locks allowed simultaneously on a file.  .PpA shared lock may be.Em upgradedto an exclusive lock, and vice versa, simply by specifyingthe appropriate lock type; this results in the previouslock being released and the new lock applied (possiblyafter other processes have gained and released the lock)..PpRequesting a lock on an object that is already lockednormally causes the caller to be blocked until the lock may beacquired.  If.Dv LOCK_NBis included in.Fa operation ,then this will not happen; instead the call will fail andthe error.Er EWOULDBLOCKwill be returned..Sh NOTESLocks are on files, not file descriptors.  That is, file descriptorsduplicated through.Xr dup 2or.Xr fork 2do not result in multiple instances of a lock, but rather multiplereferences to a single lock.  If a process holding a lock on a fileforks and the child explicitly unlocks the file, the parent willlose its lock..PpProcesses blocked awaiting a lock may be awakened by signals..Sh RETURN VALUESZero is returned if the operation was successful;on an error a -1 is returned and an error code is left inthe global location.Va errno ..Sh ERRORSThe.Fn flockcall fails if:.Bl -tag -width EWOULDBLOCKAA.It Bq Er EWOULDBLOCKThe file is locked and the.Dv LOCK_NBoption was specified..It Bq Er EBADFThe argument.Fa fdis an invalid descriptor..It Bq Er EINVALThe argument.Fa fdrefers to an object other than a file..El.Sh SEE ALSO.Xr open 2 ,.Xr close 2 ,.Xr dup 2 ,.Xr execve 2 ,.Xr fork 2.Sh HISTORYThe.Nmfunction call appeared in.Bx 4.2 .

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -