os/ossrv/genericopenlibs/openenvcore/include/sys/uio.dosc
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200 (2012-06-15)
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
/** @file  ../include/sys/uio.h
sl@0
     2
@internalComponent
sl@0
     3
*/
sl@0
     4
sl@0
     5
/** @fn  readv(int d, const struct iovec *iov, int iovcnt)
sl@0
     6
@param d
sl@0
     7
@param iov
sl@0
     8
@param iovcnt
sl@0
     9
sl@0
    10
Refer to  read() for the documentation
sl@0
    11
sl@0
    12
@see dup()
sl@0
    13
@see fcntl()
sl@0
    14
@see getdirentries()
sl@0
    15
@see open()
sl@0
    16
@see pipe()
sl@0
    17
@see select()
sl@0
    18
@see socket()
sl@0
    19
@see socketpair()
sl@0
    20
@see fread()
sl@0
    21
@see readdir()
sl@0
    22
sl@0
    23
sl@0
    24
 
sl@0
    25
sl@0
    26
@publishedAll
sl@0
    27
@externallyDefinedApi
sl@0
    28
*/
sl@0
    29
sl@0
    30
/** @fn  writev(int fd, const struct iovec *iov, int iovcnt)
sl@0
    31
@param fd
sl@0
    32
@param iov
sl@0
    33
@param iovcnt
sl@0
    34
sl@0
    35
Refer to  write() for the documentation
sl@0
    36
sl@0
    37
@see fcntl()
sl@0
    38
@see lseek()
sl@0
    39
@see open()
sl@0
    40
@see pipe()
sl@0
    41
@see select()
sl@0
    42
sl@0
    43
sl@0
    44
 
sl@0
    45
sl@0
    46
@publishedAll
sl@0
    47
@externallyDefinedApi
sl@0
    48
*/
sl@0
    49
sl@0
    50
/** @enum uio_seg
sl@0
    51
sl@0
    52
Segment flag values. Contians,
sl@0
    53
UIO_USERSPACE, from user data space 
sl@0
    54
UIO_SYSSPACE,  from system space 
sl@0
    55
UIO_NOCOPY, don't copy, already in object
sl@0
    56
sl@0
    57
@publishedAll
sl@0
    58
@externallyDefinedApi
sl@0
    59
*/
sl@0
    60
sl@0
    61
/** @enum uio_rw
sl@0
    62
sl@0
    63
Contains read write flags, UIO_READ, UIO_WRITE
sl@0
    64
sl@0
    65
@publishedAll
sl@0
    66
@externallyDefinedApi
sl@0
    67
*/
sl@0
    68
sl@0
    69
sl@0
    70