1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/genericopenlibs/openenvcore/include/sys/uio.dosc Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,70 @@
1.4 +/** @file ../include/sys/uio.h
1.5 +@internalComponent
1.6 +*/
1.7 +
1.8 +/** @fn readv(int d, const struct iovec *iov, int iovcnt)
1.9 +@param d
1.10 +@param iov
1.11 +@param iovcnt
1.12 +
1.13 +Refer to read() for the documentation
1.14 +
1.15 +@see dup()
1.16 +@see fcntl()
1.17 +@see getdirentries()
1.18 +@see open()
1.19 +@see pipe()
1.20 +@see select()
1.21 +@see socket()
1.22 +@see socketpair()
1.23 +@see fread()
1.24 +@see readdir()
1.25 +
1.26 +
1.27 +
1.28 +
1.29 +@publishedAll
1.30 +@externallyDefinedApi
1.31 +*/
1.32 +
1.33 +/** @fn writev(int fd, const struct iovec *iov, int iovcnt)
1.34 +@param fd
1.35 +@param iov
1.36 +@param iovcnt
1.37 +
1.38 +Refer to write() for the documentation
1.39 +
1.40 +@see fcntl()
1.41 +@see lseek()
1.42 +@see open()
1.43 +@see pipe()
1.44 +@see select()
1.45 +
1.46 +
1.47 +
1.48 +
1.49 +@publishedAll
1.50 +@externallyDefinedApi
1.51 +*/
1.52 +
1.53 +/** @enum uio_seg
1.54 +
1.55 +Segment flag values. Contians,
1.56 +UIO_USERSPACE, from user data space
1.57 +UIO_SYSSPACE, from system space
1.58 +UIO_NOCOPY, don't copy, already in object
1.59 +
1.60 +@publishedAll
1.61 +@externallyDefinedApi
1.62 +*/
1.63 +
1.64 +/** @enum uio_rw
1.65 +
1.66 +Contains read write flags, UIO_READ, UIO_WRITE
1.67 +
1.68 +@publishedAll
1.69 +@externallyDefinedApi
1.70 +*/
1.71 +
1.72 +
1.73 +