summaryrefslogtreecommitdiffstats
path: root/share/man/man9/VOP_ATTRIB.9
diff options
context:
space:
mode:
authorarr <arr@FreeBSD.org>2001-11-20 18:19:19 +0000
committerarr <arr@FreeBSD.org>2001-11-20 18:19:19 +0000
commitd6a5097acfb786f3b9c7928ff97121c937d194df (patch)
tree34bd49faec8c8950d00eec1ab1e57d65b88ce539 /share/man/man9/VOP_ATTRIB.9
parentc58cb395e6c8970b1c3df2de4b29411cc80c467d (diff)
downloadFreeBSD-src-d6a5097acfb786f3b9c7928ff97121c937d194df.zip
FreeBSD-src-d6a5097acfb786f3b9c7928ff97121c937d194df.tar.gz
- Fix a number of man pages broken by the KSE merger.
Diffstat (limited to 'share/man/man9/VOP_ATTRIB.9')
-rw-r--r--share/man/man9/VOP_ATTRIB.912
1 files changed, 6 insertions, 6 deletions
diff --git a/share/man/man9/VOP_ATTRIB.9 b/share/man/man9/VOP_ATTRIB.9
index f5477ff..1671e08 100644
--- a/share/man/man9/VOP_ATTRIB.9
+++ b/share/man/man9/VOP_ATTRIB.9
@@ -39,9 +39,9 @@
.In sys/param.h
.In sys/vnode.h
.Ft int
-.Fn VOP_GETATTR "struct vnode *vp" "struct vattr *vap" "struct ucred *cred" "struct proc *p"
+.Fn VOP_GETATTR "struct vnode *vp" "struct vattr *vap" "struct ucred *cred" "struct thread *td"
.Ft int
-.Fn VOP_SETATTR "struct vnode *vp" "struct vattr *vap" "struct ucred *cred" "struct proc *p"
+.Fn VOP_SETATTR "struct vnode *vp" "struct vattr *vap" "struct ucred *cred" "struct thread *td"
.Sh DESCRIPTION
These entry points manipulate various attributes of a file or directory,
including file permissions, owner, group, size,
@@ -55,8 +55,8 @@ the vnode of the file
the attributes of the file
.It Ar cred
the user credentials of the calling process
-.It Ar p
-the process
+.It Ar td
+the thread
.El
.Pp
Attributes which are not being modified by
@@ -82,7 +82,7 @@ appropriate error is returned.
.Bd -literal
int
vop_getattr(struct vnode *vp, struct vattr *vap,
- struct ucred *cred, struct proc *p)
+ struct ucred *cred, struct thread *td)
{
/*
* Fill in the contents of *vap with information from
@@ -95,7 +95,7 @@ vop_getattr(struct vnode *vp, struct vattr *vap,
int
vop_setattr(struct vnode *vp, struct vattr *vap,
- struct ucred *cred, struct proc *p)
+ struct ucred *cred, struct thread *td)
{
/*
* Check for unsettable attributes.
OpenPOWER on IntegriCloud