1 /* Copyright (C) 1991-2018 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <http://www.gnu.org/licenses/>. */
22 #include <sys/types.h>
23 #include <bits/types/struct_iovec.h>
24 #include <bits/uio_lim.h>
26 # define UIO_MAXIOV __IOV_MAX
33 /* Read data from file descriptor FD, and put the result in the
34 buffers described by IOVEC, which is a vector of COUNT 'struct iovec's.
35 The buffers are filled in the order specified.
36 Operates just like 'read' (see <unistd.h>) except that data are
37 put in IOVEC instead of a contiguous buffer.
39 This function is a cancellation point and therefore not marked with
41 extern ssize_t
readv (int __fd
, const struct iovec
*__iovec
, int __count
)
44 /* Write data pointed by the buffers described by IOVEC, which
45 is a vector of COUNT 'struct iovec's, to file descriptor FD.
46 The data is written in the order specified.
47 Operates just like 'write' (see <unistd.h>) except that the data
48 are taken from IOVEC instead of a contiguous buffer.
50 This function is a cancellation point and therefore not marked with
52 extern ssize_t
writev (int __fd
, const struct iovec
*__iovec
, int __count
)
57 # ifndef __USE_FILE_OFFSET64
58 /* Read data from file descriptor FD at the given position OFFSET
59 without change the file pointer, and put the result in the buffers
60 described by IOVEC, which is a vector of COUNT 'struct iovec's.
61 The buffers are filled in the order specified. Operates just like
62 'pread' (see <unistd.h>) except that data are put in IOVEC instead
63 of a contiguous buffer.
65 This function is a cancellation point and therefore not marked with
67 extern ssize_t
preadv (int __fd
, const struct iovec
*__iovec
, int __count
,
68 __off_t __offset
) __wur
;
70 /* Write data pointed by the buffers described by IOVEC, which is a
71 vector of COUNT 'struct iovec's, to file descriptor FD at the given
72 position OFFSET without change the file pointer. The data is
73 written in the order specified. Operates just like 'pwrite' (see
74 <unistd.h>) except that the data are taken from IOVEC instead of a
77 This function is a cancellation point and therefore not marked with
79 extern ssize_t
pwritev (int __fd
, const struct iovec
*__iovec
, int __count
,
80 __off_t __offset
) __wur
;
84 extern ssize_t
__REDIRECT (preadv
, (int __fd
, const struct iovec
*__iovec
,
85 int __count
, __off64_t __offset
),
87 extern ssize_t
__REDIRECT (pwritev
, (int __fd
, const struct iovec
*__iovec
,
88 int __count
, __off64_t __offset
),
91 # define preadv preadv64
92 # define pwritev pwritev64
96 # ifdef __USE_LARGEFILE64
97 /* Read data from file descriptor FD at the given position OFFSET
98 without change the file pointer, and put the result in the buffers
99 described by IOVEC, which is a vector of COUNT 'struct iovec's.
100 The buffers are filled in the order specified. Operates just like
101 'pread' (see <unistd.h>) except that data are put in IOVEC instead
102 of a contiguous buffer.
104 This function is a cancellation point and therefore not marked with
106 extern ssize_t
preadv64 (int __fd
, const struct iovec
*__iovec
, int __count
,
107 __off64_t __offset
) __wur
;
109 /* Write data pointed by the buffers described by IOVEC, which is a
110 vector of COUNT 'struct iovec's, to file descriptor FD at the given
111 position OFFSET without change the file pointer. The data is
112 written in the order specified. Operates just like 'pwrite' (see
113 <unistd.h>) except that the data are taken from IOVEC instead of a
116 This function is a cancellation point and therefore not marked with
118 extern ssize_t
pwritev64 (int __fd
, const struct iovec
*__iovec
, int __count
,
119 __off64_t __offset
) __wur
;
121 #endif /* Use misc. */
125 # ifndef __USE_FILE_OFFSET64
126 /* Same as preadv but with an additional flag argumenti defined at uio.h. */
127 extern ssize_t
preadv2 (int __fp
, const struct iovec
*__iovec
, int __count
,
128 __off_t __offset
, int ___flags
) __wur
;
130 /* Same as preadv but with an additional flag argument defined at uio.h. */
131 extern ssize_t
pwritev2 (int __fd
, const struct iovec
*__iodev
, int __count
,
132 __off_t __offset
, int __flags
) __wur
;
136 extern ssize_t
__REDIRECT (pwritev2
, (int __fd
, const struct iovec
*__iovec
,
137 int __count
, __off64_t __offset
,
140 extern ssize_t
__REDIRECT (preadv2
, (int __fd
, const struct iovec
*__iovec
,
141 int __count
, __off64_t __offset
,
145 # define preadv2 preadv64v2
146 # define pwritev2 pwritev64v2
150 # ifdef __USE_LARGEFILE64
151 /* Same as preadv but with an additional flag argumenti defined at uio.h. */
152 extern ssize_t
preadv64v2 (int __fp
, const struct iovec
*__iovec
,
153 int __count
, __off64_t __offset
,
156 /* Same as preadv but with an additional flag argument defined at uio.h. */
157 extern ssize_t
pwritev64v2 (int __fd
, const struct iovec
*__iodev
,
158 int __count
, __off64_t __offset
,
161 #endif /* Use GNU. */
165 /* Some operating systems provide system-specific extensions to this
168 # include <bits/uio-ext.h>
171 #endif /* sys/uio.h */