]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/unix/sysv/linux/preadv.c
Consolidate preadv/preadv64 implementation
[thirdparty/glibc.git] / sysdeps / unix / sysv / linux / preadv.c
CommitLineData
f7a9f785 1/* Copyright (C) 2009-2016 Free Software Foundation, Inc.
e109c612
UD
2 This file is part of the GNU C Library.
3
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.
8
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.
13
14 You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
15 License along with the GNU C Library; if not, see
16 <http://www.gnu.org/licenses/>. */
e109c612 17
e109c612 18#include <sys/uio.h>
e109c612 19#include <sysdep-cancel.h>
e109c612 20
4e778151 21#if __WORDSIZE != 64 || defined (__ASSUME_OFF_DIFF_OFF64)
7f8a28ef 22
4e778151 23# ifdef __ASSUME_PREADV
e109c612 24
4e778151
AZ
25# ifndef __NR_preadv
26# define __NR_preadv __NR_preadv64
27# endif
e109c612
UD
28
29ssize_t
4e778151 30preadv (int fd, const struct iovec *vector, int count, off_t offset)
e109c612 31{
4e778151
AZ
32 return SYSCALL_CANCEL (preadv, fd, vector, count,
33 __ALIGNMENT_ARG SYSCALL_LL (offset));
34}
35# else
36static ssize_t __atomic_preadv_replacement (int, const struct iovec *,
37 int, off_t) internal_function;
38ssize_t
39preadv (int fd, const struct iovec *vector, int count, off_t offset)
40{
41# ifdef __NR_preadv
42 ssize_t result = SYSCALL_CANCEL (preadv, fd, vector, count,
43 __ALIGNMENT_ARG SYSCALL_LL (offset));
e109c612
UD
44 if (result >= 0 || errno != ENOSYS)
45 return result;
4e778151
AZ
46# endif
47 return __atomic_preadv_replacement (fd, vector, count, offset);
e109c612 48}
4e778151
AZ
49# define PREADV static internal_function __atomic_preadv_replacement
50# define PREAD __pread
51# define OFF_T off_t
52# include <sysdeps/posix/preadv.c>
53# endif /* __ASSUME_PREADV */
e109c612 54#endif