Add <sys/auxv.h> and getauxval.
[glibc.git] / sysdeps / unix / sysv / linux / readv.c
blob440e1039c3a8f3aceda135ceadc1ba36b886af43
1 /* readv supports all Linux kernels >= 2.0.
2 Copyright (C) 1997,1998,2000,2002,2003,2009,2012
3 Free Software Foundation, Inc.
4 This file is part of the GNU C Library.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, see
18 <http://www.gnu.org/licenses/>. */
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>
28 #include <kernel-features.h>
30 #ifndef __ASSUME_COMPLETE_READV_WRITEV
31 static ssize_t __atomic_readv_replacement (int, const struct iovec *,
32 int) internal_function;
33 #endif
36 /* Not all versions of the kernel support the large number of records. */
37 #ifndef UIO_FASTIOV
38 # define UIO_FASTIOV 8 /* 8 is a safe number. */
39 #endif
42 ssize_t
43 __libc_readv (fd, vector, count)
44 int fd;
45 const struct iovec *vector;
46 int count;
48 ssize_t result;
50 if (SINGLE_THREAD_P)
51 result = INLINE_SYSCALL (readv, 3, fd, CHECK_N (vector, count), count);
52 else
54 int oldtype = LIBC_CANCEL_ASYNC ();
56 result = INLINE_SYSCALL (readv, 3, fd, CHECK_N (vector, count), count);
58 LIBC_CANCEL_RESET (oldtype);
61 #ifdef __ASSUME_COMPLETE_READV_WRITEV
62 return result;
63 #else
64 if (result >= 0 || errno != EINVAL || count <= UIO_FASTIOV)
65 return result;
67 return __atomic_readv_replacement (fd, vector, count);
68 #endif
70 strong_alias (__libc_readv, __readv)
71 weak_alias (__libc_readv, readv)
73 #ifndef __ASSUME_COMPLETE_READV_WRITEV
74 # define __libc_readv static internal_function __atomic_readv_replacement
75 # include <sysdeps/posix/readv.c>
76 #endif