aboutsummaryrefslogtreecommitdiff
path: root/share/man/man9/uio.9
diff options
context:
space:
mode:
authorDima Dorfman <dd@FreeBSD.org>2001-11-05 00:41:39 +0000
committerDima Dorfman <dd@FreeBSD.org>2001-11-05 00:41:39 +0000
commitdbb10b1eaa2a7df5d73ed5874fa808b74f8d532f (patch)
tree49fabc949d0eea32b46ee608624ddb965919db4a /share/man/man9/uio.9
parent8b642e3004940e064292414674c32f37cb015b87 (diff)
downloadsrc-dbb10b1eaa2a7df5d73ed5874fa808b74f8d532f.tar.gz
src-dbb10b1eaa2a7df5d73ed5874fa808b74f8d532f.zip
Catch up to proc->thread changes.
PR: 31428 Submitted by: Chad David <davidc@acns.ab.ca>
Notes
Notes: svn path=/head/; revision=86064
Diffstat (limited to 'share/man/man9/uio.9')
-rw-r--r--share/man/man9/uio.98
1 files changed, 4 insertions, 4 deletions
diff --git a/share/man/man9/uio.9 b/share/man/man9/uio.9
index 0da26c3bb9b1..169c74fb8282 100644
--- a/share/man/man9/uio.9
+++ b/share/man/man9/uio.9
@@ -44,7 +44,7 @@ struct uio {
int uio_resid;
enum uio_seg uio_segflg;
enum uio_rw uio_rw;
- struct proc *uio_procp;
+ struct thread *uio_td;
};
.Ed
.Ft int
@@ -102,10 +102,10 @@ The direction of the desired transfer, either
.Dv UIO_READ ,
or
.Dv UIO_WRITE .
-.It Dv uio_procp
+.It Dv uio_td
The pointer to a
-.Li struct proc
-for the associated process; used if
+.Li struct thread
+for the associated thread; used if
.Dv uio_segflg
indicates that the transfer is to be made from/to a process's address
space.