]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/unix/sysv/linux/readv.c
Remove pre-ISO C support
[thirdparty/glibc.git] / sysdeps / unix / sysv / linux / readv.c
CommitLineData
e61abf83 1/* readv supports all Linux kernels >= 2.0.
a784e502
UD
2 Copyright (C) 1997,1998,2000,2002,2003,2009,2012
3 Free Software Foundation, Inc.
e61abf83
UD
4 This file is part of the GNU C Library.
5
6 The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
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.
e61abf83
UD
10
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
41bdb6e2 14 Lesser General Public License for more details.
e61abf83 15
41bdb6e2
AJ
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307 USA. */
e61abf83
UD
20
21#include <errno.h>
22#include <stddef.h>
23#include <sys/param.h>
24#include <sys/uio.h>
25
6ee8d334 26#include <sysdep-cancel.h>
0dee6738 27#include <sys/syscall.h>
4bbb61e4 28#include <bp-checks.h>
2dbe6afe 29#include <kernel-features.h>
0dee6738 30
f521be31 31#ifndef __ASSUME_COMPLETE_READV_WRITEV
a784e502 32static ssize_t __atomic_readv_replacement (int, const struct iovec *,
bcaad6ee 33 int) internal_function;
f521be31 34#endif
e61abf83
UD
35
36
37/* Not all versions of the kernel support the large number of records. */
c57abfa7
UD
38#ifndef UIO_FASTIOV
39# define UIO_FASTIOV 8 /* 8 is a safe number. */
e61abf83
UD
40#endif
41
42
6ee8d334
UD
43ssize_t
44__libc_readv (fd, vector, count)
45 int fd;
46 const struct iovec *vector;
47 int count;
48{
7166c77a 49 ssize_t result;
6ee8d334 50
7166c77a
UD
51 if (SINGLE_THREAD_P)
52 result = INLINE_SYSCALL (readv, 3, fd, CHECK_N (vector, count), count);
53 else
54 {
55 int oldtype = LIBC_CANCEL_ASYNC ();
6ee8d334 56
7166c77a 57 result = INLINE_SYSCALL (readv, 3, fd, CHECK_N (vector, count), count);
6ee8d334 58
7166c77a
UD
59 LIBC_CANCEL_RESET (oldtype);
60 }
6ee8d334 61
7166c77a 62#ifdef __ASSUME_COMPLETE_READV_WRITEV
6ee8d334 63 return result;
7166c77a
UD
64#else
65 if (result >= 0 || errno != EINVAL || count <= UIO_FASTIOV)
66 return result;
67
68 return __atomic_readv_replacement (fd, vector, count);
69#endif
6ee8d334 70}
6166815d
UD
71strong_alias (__libc_readv, __readv)
72weak_alias (__libc_readv, readv)
5ae9d168 73
2dbe6afe
UD
74#ifndef __ASSUME_COMPLETE_READV_WRITEV
75# define __libc_readv static internal_function __atomic_readv_replacement
76# include <sysdeps/posix/readv.c>
77#endif