Remove references to UIO_USERISPACE which no longer exists.

This commit is contained in:
Peter Wemm 2002-06-20 07:09:24 +00:00
parent 9d04103b7c
commit 3ff369fed2
2 changed files with 2 additions and 6 deletions

View File

@ -755,14 +755,13 @@ struct iovec {
};
.DE
.DS
.ta .5i +\w'UIO_USERISPACE\0\0\0\0\0'u
.ta .5i +\w'UIO_USERSPACE\0\0\0\0\0'u
/*
* Segment flag values.
*/
enum uio_seg {
UIO_USERSPACE, /* from user data space */
UIO_SYSSPACE, /* from system space */
UIO_USERISPACE /* from user I space */
};
.DE
.NH

View File

@ -90,14 +90,11 @@ The offset into the device.
The number of bytes to process.
.It Va uio_segflg
One of the following flags:
.Bl -tag -width ".Dv UIO_USERISPACE"
.Bl -tag -width ".Dv UIO_USERSPACE"
.It Dv UIO_USERSPACE
The I/O vector points into a process's address space.
.It Dv UIO_SYSSPACE
The I/O vector points into the kernel address space.
.It Dv UIO_USERISPACE
The I/O vector points into the instruction area of a process's address
space.
.It Dv UIO_NOCOPY
Don't copy, already in object.
.El