From 4f113a461592e81534526965a03a35ee6d079dde Mon Sep 17 00:00:00 2001 From: David Reid Date: Fri, 12 Jul 2002 09:31:24 +0000 Subject: [PATCH] This is now just uio.h and is provided by the system, so no need to have a different version for the network. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@121 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/posix/sys/net_uio.h | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 headers/posix/sys/net_uio.h diff --git a/headers/posix/sys/net_uio.h b/headers/posix/sys/net_uio.h deleted file mode 100644 index c5730f4deb..0000000000 --- a/headers/posix/sys/net_uio.h +++ /dev/null @@ -1,26 +0,0 @@ -/* uio.h */ - -#ifndef NET_SYS_UIO_H -#define NET_SYS_UIO_H - -enum uio_rw { UIO_READ, UIO_WRITE }; - -/* Segment flag values. */ -enum uio_seg { - UIO_USERSPACE, /* from user data space */ - UIO_SYSSPACE /* from system space */ -}; - -struct uio { - struct iovec *uio_iov; /* pointer to array of iovecs */ - int uio_iovcnt; /* number of iovecs in array */ - off_t uio_offset; /* offset into file this uio corresponds to */ - size_t uio_resid; /* residual i/o count */ - enum uio_seg uio_segflg; /* see above */ - enum uio_rw uio_rw; /* see above */ -// struct proc *uio_procp; /* process if UIO_USERSPACE */ -}; - -int uiomove(caddr_t cp, int n, struct uio *uio); - -#endif /* NET_SYS_UIO_H */