Museum

Home

Lab Overview

Retrotechnology Articles

Online Manuals

⇒ flock.bsd(2) — Domain/IX SR9.5

Media Vault

Software Library

Restoration Projects

Artifacts Sought

Related Articles

open(2)

close(2)

dup(2)

execve(2)

fork(2)

FLOCK(2)

NAME

flock − place or remove an advisory lock on an open file

USAGE

#include <sys/file.h>
 
#defineLOCK_SH1/* shared lock */ #defineLOCK_EX2/* exclusive lock */ #define LOCK_NB 4 /* don’t block when locking */ #define LOCK_UN 8 /* unlock */
 
flock(fd, operation) int fd, operation;

DESCRIPTION

Flock applies or removes an advisory lock on the file identified by the descriptor fd. A lock is applied by specifying an operation parameter which is the (inclusive) OR of LOCK_SH or LOCK_EX and, possibly, LOCK_NB.  To unlock an existing lock, operation should be LOCK_UN. 

Advisory locks allow cooperating processes to perform consistent operations on files, but do not guarantee consistency.  (Processes may still access files without using advisory locks, and this may result in inconsistencies). 

The locking mechanism allows two types of locks: “shared” locks and “exclusive” locks.  Multiple shared locks may be applied to a file at any time.  At no time are multiple exclusive locks, or a combination of shared and exclusive locks, allowed on a file. 

A shared lock may be upgraded to an exclusive lock (or an exclusive lock turned into a shared lock) by specifying the appropriate lock type; this releases the previous lock and applies the new one. 

Requesting a lock on an object that is already locked normally causes the caller to blocked until the lock can be acquired.  If LOCK_NB is included in operation, such calls will fail and return the error EWOULDBLOCK instead.

NOTES

Locks are on files, not file descriptors.  That is, file descriptors duplicated through dup(2) or fork(2) do not result in multiple instances of a lock, but rather multiple references to a single lock.  If a process holding a lock on a file forks and the child explicitly unlocks the file, the parent will lose its lock. 

Processes that are blocked waiting for a lock may be awakened by signals. 

All processes that use advisory locks on a given file must be running on the same node. 

RETURN VALUE

A successful call returns zero.  A failed call returns -1 and sets errno as indicated below. 

ERRORS

The flock call fails if:

[EWOULDBLOCK]
The file is locked and the LOCK_NB option was specified.

[EBADF] The argument fd is an invalid descriptor. 

[EINVAL] The argument fd refers to an object other than a file. 

RELATED INFORMATION

open(2), close(2), dup(2), execve(2), fork(2)

Typewritten Software • bear@typewritten.org • Edmonds, WA 98026