date and time created 82/09/04 09:27:46 by root
authorBill Joy <root@ucbvax.Berkeley.EDU>
Sun, 5 Sep 1982 00:27:46 +0000 (16:27 -0800)
committerBill Joy <root@ucbvax.Berkeley.EDU>
Sun, 5 Sep 1982 00:27:46 +0000 (16:27 -0800)
SCCS-vsn: sys/sys/uio.h 4.1

usr/src/sys/sys/uio.h [new file with mode: 0644]

diff --git a/usr/src/sys/sys/uio.h b/usr/src/sys/sys/uio.h
new file mode 100644 (file)
index 0000000..da03f47
--- /dev/null
@@ -0,0 +1,16 @@
+/*     uio.h   4.1     82/09/04        */
+
+struct iovec {
+       caddr_t iov_base;
+       int     iov_len;
+};
+
+struct uio {
+       struct  iovec *uio_iov;
+       int     uio_iovcnt;
+       int     uio_offset;
+       int     uio_segflg;
+       int     uio_resid;
+};
+
+enum   uio_rw { UIO_READ, UIO_WRITE };