mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Update VOP_LOCK() and VOP_UNLOCK() prototypes.
Leave 'td' argument description as it is used by VOP_ISLOCKED(). It will be axed in further commit.
This commit is contained in:
parent
e5af135aad
commit
f8a134ac63
1 changed files with 3 additions and 3 deletions
|
|
@ -28,7 +28,7 @@
|
|||
.\"
|
||||
.\" $FreeBSD$
|
||||
.\"
|
||||
.Dd January 10, 2008
|
||||
.Dd January 19, 2008
|
||||
.Os
|
||||
.Dt VOP_LOCK 9
|
||||
.Sh NAME
|
||||
|
|
@ -42,9 +42,9 @@
|
|||
.In sys/lock.h
|
||||
.In sys/vnode.h
|
||||
.Ft int
|
||||
.Fn VOP_LOCK "struct vnode *vp" "int flags" "struct thread *td"
|
||||
.Fn VOP_LOCK "struct vnode *vp" "int flags"
|
||||
.Ft int
|
||||
.Fn VOP_UNLOCK "struct vnode *vp" "int flags" "struct thread *td"
|
||||
.Fn VOP_UNLOCK "struct vnode *vp" "int flags"
|
||||
.Ft int
|
||||
.Fn VOP_ISLOCKED "struct vnode *vp" "struct thread *td"
|
||||
.Ft int
|
||||
|
|
|
|||
Loading…
Reference in a new issue