summaryrefslogtreecommitdiffstats
path: root/share/man/man9/VOP_IOCTL.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_IOCTL.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_IOCTL.9')
-rw-r--r--share/man/man9/VOP_IOCTL.98
1 files changed, 4 insertions, 4 deletions
diff --git a/share/man/man9/VOP_IOCTL.9 b/share/man/man9/VOP_IOCTL.9
index 444843b..22af41c 100644
--- a/share/man/man9/VOP_IOCTL.9
+++ b/share/man/man9/VOP_IOCTL.9
@@ -38,7 +38,7 @@
.In sys/param.h
.In sys/vnode.h
.Ft int
-.Fn VOP_IOCTL "struct vnode *vp" "u_long command" "caddr_t data" "int fflag" "struct ucred *cred" "struct proc *p"
+.Fn VOP_IOCTL "struct vnode *vp" "u_long command" "caddr_t data" "int fflag" "struct ucred *cred" "struct thread *td"
.Sh DESCRIPTION
Manipulate a file in device dependent ways.
.Pp
@@ -54,8 +54,8 @@ extra data for the specified operation
some flags ???
.It Ar cred
the caller's credentials
-.It Ar p
-the calling process
+.It Ar td
+the calling thread
.El
.Pp
Most filesystems do not implement this entry point.
@@ -67,7 +67,7 @@ If successful, zero is returned, otherwise an appropriate error code.
.Bd -literal
int
vop_ioctl(struct vnode *vp, int command, caddr_t data, int fflag,
- struct ucred *cred, struct proc *p)
+ struct ucred *cred, struct thread *td)
{
return EOPNOTSUPP;
}
OpenPOWER on IntegriCloud