LOCKF(3) | Linux Programmer's Manual | LOCKF(3) |
lockf - apply, test or remove a POSIX lock on an open file
#include <unistd.h>
int lockf(int fd, int cmd, off_t len);
lockf():
Apply, test or remove a POSIX lock on a section of an open file. The file is specified by fd, a file descriptor open for writing, the action by cmd, and the section consists of byte positions pos..pos+len-1 if len is positive, and pos-len..pos-1 if len is negative, where pos is the current file position, and if len is zero, the section extends from the current file position to infinity, encompassing the present and future end-of-file positions. In all cases, the section may extend past current end-of-file.
On Linux, lockf() is just an interface on top of fcntl(2) locking. Many other systems implement lockf() in this way, but note that POSIX.1 leaves the relationship between lockf() and fcntl(2) locks unspecified. A portable application should probably avoid mixing calls to these interfaces.
Valid operations are given below:
On success, zero is returned. On error, -1 is returned, and errno is set appropriately.
For an explanation of the terms used in this section, see attributes(7).
Interface | Attribute | Value |
lockf () | Thread safety | MT-Safe |
POSIX.1-2001, POSIX.1-2008, SVr4.
locks.txt and mandatory-locking.txt in the Linux kernel source directory Documentation/filesystems (on older kernels, these files are directly under the Documentation directory, and mandatory-locking.txt is called mandatory.txt)
This page is part of release 5.10 of the Linux man-pages project. A description of the project, information about reporting bugs, and the latest version of this page, can be found at https://www.kernel.org/doc/man-pages/.
2019-03-06 | GNU |