diff options
Diffstat (limited to 'sysdeps/unix/sysv/linux/preadv64v2.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/preadv64v2.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/sysdeps/unix/sysv/linux/preadv64v2.c b/sysdeps/unix/sysv/linux/preadv64v2.c index f1e52711cb..1bf1a4c696 100644 --- a/sysdeps/unix/sysv/linux/preadv64v2.c +++ b/sysdeps/unix/sysv/linux/preadv64v2.c @@ -19,20 +19,15 @@ #include <sys/uio.h> #include <sysdep-cancel.h> -#if !defined(__NR_preadv64v2) && defined(__NR_preadv2) -# define __NR_preadv64v2 __NR_preadv2 -#endif - ssize_t preadv64v2 (int fd, const struct iovec *vector, int count, off64_t offset, int flags) { -#ifdef __NR_preadv64v2 - ssize_t result = SYSCALL_CANCEL (preadv64v2, fd, vector, count, + ssize_t result = SYSCALL_CANCEL (preadv2, fd, vector, count, LO_HI_LONG (offset), flags); if (result >= 0 || errno != ENOSYS) return result; -#endif + /* Trying to emulate the preadv2 syscall flags is troublesome: * We can not temporary change the file state of the O_DSYNC and O_SYNC |