aboutsummaryrefslogtreecommitdiff
path: root/share/man/man9
diff options
context:
space:
mode:
authorAlan Somers <asomers@FreeBSD.org>2019-05-27 23:25:19 +0000
committerAlan Somers <asomers@FreeBSD.org>2019-05-27 23:25:19 +0000
commit2b3899c0ee2305e4d62d61ed41096b439c9888c3 (patch)
tree509e10d03d4907e994244aadb5648b6d2e9e58c9 /share/man/man9
parent8a5969801d4f633cdd3d678e22dd4aca79dce9e9 (diff)
downloadsrc-2b3899c0ee2305e4d62d61ed41096b439c9888c3.tar.gz
src-2b3899c0ee2305e4d62d61ed41096b439c9888c3.zip
VOP_ADVLOCK.9: fix description of flags
* F_RDLCK, F_UNLCK, and F_WRLCK aren't flags. They're stored in the fl.l_type field. * Add F_REMOTE, added in r177633 * Add F_NOINTR, added in r180025 MFC after: 2 weeks Sponsored by: The FreeBSD Foundation
Notes
Notes: svn path=/head/; revision=348316
Diffstat (limited to 'share/man/man9')
-rw-r--r--share/man/man9/VOP_ADVLOCK.914
1 files changed, 6 insertions, 8 deletions
diff --git a/share/man/man9/VOP_ADVLOCK.9 b/share/man/man9/VOP_ADVLOCK.9
index 3dabc59ea496..e850f32e12b4 100644
--- a/share/man/man9/VOP_ADVLOCK.9
+++ b/share/man/man9/VOP_ADVLOCK.9
@@ -28,7 +28,7 @@
.\"
.\" $FreeBSD$
.\"
-.Dd June 30, 1999
+.Dd May 27, 2019
.Dt VOP_ADVLOCK 9
.Os
.Sh NAME
@@ -56,13 +56,7 @@ Description of the lock.
.It Fa flags
One of more of the following:
.Pp
-.Bl -tag -width ".Dv F_UNLCK" -offset indent -compact
-.It Dv F_RDLCK
-Shared or read lock.
-.It Dv F_UNLCK
-Unlock.
-.It Dv F_WRLCK
-Exclusive or write lock.
+.Bl -tag -width ".Dv F_REMOTE" -offset indent -compact
.It Dv F_WAIT
Wait until lock is granted.
.It Dv F_FLOCK
@@ -71,6 +65,10 @@ Use
semantics for lock.
.It Dv F_POSIX
Use POSIX semantics for lock.
+.It Dv F_REMOTE
+Lock owner is remote NFS client.
+.It Dv F_NOINTR
+Mask signals while waiting for the lock.
.El
.El
.Pp