2.9
[glibc/nacl-glibc.git] / sysdeps / unix / sysv / linux / readv.c
blob250c00a075bdc2aea2dff9fd0fc5e512bc05e894
1 /* readv supports all Linux kernels >= 2.0.
2 Copyright (C) 1997,1998,2000,2002,2003 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA. */
20 #include <errno.h>
21 #include <stddef.h>
22 #include <sys/param.h>
23 #include <sys/uio.h>
25 #include <sysdep-cancel.h>
26 #include <sys/syscall.h>
27 #include <bp-checks.h>
29 static ssize_t __atomic_readv_replacement (int, __const struct iovec *,
30 int) internal_function;
33 /* Not all versions of the kernel support the large number of records. */
34 #ifndef UIO_FASTIOV
35 # define UIO_FASTIOV 8 /* 8 is a safe number. */
36 #endif
39 /* We should deal with kernel which have a smaller UIO_FASTIOV as well
40 as a very big count. */
41 static ssize_t
42 do_readv (int fd, const struct iovec *vector, int count)
44 ssize_t bytes_read;
46 bytes_read = INLINE_SYSCALL (readv, 3, fd, CHECK_N (vector, count), count);
48 if (bytes_read >= 0 || errno != EINVAL || count <= UIO_FASTIOV)
49 return bytes_read;
51 return __atomic_readv_replacement (fd, vector, count);
55 ssize_t
56 __libc_readv (fd, vector, count)
57 int fd;
58 const struct iovec *vector;
59 int count;
61 if (SINGLE_THREAD_P)
62 return do_readv (fd, vector, count);
64 int oldtype = LIBC_CANCEL_ASYNC ();
66 int result = do_readv (fd, vector, count);
68 LIBC_CANCEL_RESET (oldtype);
70 return result;
72 strong_alias (__libc_readv, __readv)
73 weak_alias (__libc_readv, readv)
75 #define __libc_readv static internal_function __atomic_readv_replacement
76 #include <sysdeps/posix/readv.c>