1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
|
.\" (c) 1993 by Thomas Koenig (ig25@rz.uni-karlsruhe.de)
.\"
.\" Permission is granted to make and distribute verbatim copies of this
.\" manual provided the copyright notice and this permission notice are
.\" preserved on all copies.
.\"
.\" Permission is granted to copy and distribute modified versions of this
.\" manual under the conditions for verbatim copying, provided that the
.\" entire resulting derived work is distributed under the terms of a
.\" permission notice identical to this one
.\"
.\" Since the Linux kernel and libraries are constantly changing, this
.\" manual page may be incorrect or out-of-date. The author(s) assume no
.\" responsibility for errors or omissions, or for damages resulting from
.\" the use of the information contained herein. The author(s) may not
.\" have taken the same level of care in the production of this manual,
.\" which is licensed free of charge, as they might when working
.\" professionally.
.\"
.\" Formatted or processed versions of this manual, if unaccompanied by
.\" the source, must acknowledge the copyright and authors of this work.
.\" License.
.\" Modified Sat Jul 24 18:34:44 1993 by Rik Faith (faith@cs.unc.edu)
.\" Translated into Spanish Thu Mar 5 17:26:31 CET 1998 by Gerardo
.\" Aburruzaga Garca <gerardo.aburruzaga@uca.es>
.\"
.TH READV 3 "5 Marzo 1998" "GNU" "Manual del Progamador de Linux"
.SH NOMBRE
readv, writev \- lee o escribe datos en varios bferes
.SH SINOPSIS
.nf
.B #include <sys/uio.h>
.sp
.BI "int readv(int " descfic ", const struct iovec *" vector ","
.BI " size_t " num ");"
.sp
.BI "int writev(int " descfic ", const struct iovec *" vector ","
.BI " size_t " num ");"
.fi
.SH DESCRIPCIN
La funcin
.B readv()
lee
.I num
bloques del fichero asociado con el descriptor de fichero
.I descfic
en los mltiples bferes descritos por
.IR vector .
.PP
La funcin
.B writev()
escribe como mucho
.I num
bloques descritos por
.I vector
al fichero asociado con el descriptor de fichero
.IR descfic .
.PP
El puntero
.I vector
apunta a una
.B struct iovec
definida en
.B <sys/uio.h>
como
.PP
.br
.nf
.in 10
struct iovect
{
.in 14
void *iovbase; /* Direccin de comienzo */
size_t iov_len; /* Nmero de bytes */
.in 10
} ;
.fi
.PP
Los bferes se procesan en el orden
.IR "vector[0]" ", " vector[1] ", ... " "vector[num]" .
.PP
La funcin
.B readv()
trabaja igual que
.BR read (2)
excepto en que se rellenan mltiples bferes.
.PP
La funcin
.B writev()
trabaja como
.BR write (2)
excepto en que se escriben mltiples bferes.
.PP
.SH "VALOR DEVUELTO"
La funcin
.B readv()
devuelve el nmero de bytes \-1 en caso de error; la funcin
.B writev()
devuelve el nmero de bytes escritos.
.SH "ERRORES"
Las funciones
.B readv()
y
.B writev()
pueden fallar y poner
.I errno
a los siguientes valores:
.TP
.B EBADF
.I descfic
no es un descriptor de fichero vlido.
.TP
.B EINVAL
.I descfic
no sirve para leer (para
.BR readv() )
o para escribir (para
.BR writev() ).
.TP
.B EFAULT
.I vector
est afuera del espacio de direcciones del proceso.
.TP
.B EAGAIN
Se ha seleccionado E/S no bloqueante en la llamada a
.B open()
y la lectura o escritura no ha podido hacerse inmediatamente.
.TP
.B EINTR
La lectura o la escritura han sido interrumpidas antes de que se hayan
transferido datos.
.SH "CONFORMES CON"
No se sabe.
.SH "FALLOS"
No es recomendable mezclar llamadas a funciones como
.BR readv() " o " writev() ,
que operan con descriptores de ficheros, con las funciones de la
biblioteca stdio; los resultados sern indefinidos y probablemente no
los deseados.
.SH "VASE TAMBIN"
.BR read "(2), " write (2)
|