diff options
Diffstat (limited to 'sysdeps/unix/sysv/linux/preadv2.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/preadv2.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/sysdeps/unix/sysv/linux/preadv2.c b/sysdeps/unix/sysv/linux/preadv2.c index 5f1a83589e..4e3aa923da 100644 --- a/sysdeps/unix/sysv/linux/preadv2.c +++ b/sysdeps/unix/sysv/linux/preadv2.c @@ -21,20 +21,15 @@ #ifndef __OFF_T_MATCHES_OFF64_T -# if !defined (__NR_preadv2) && defined (__NR_pread64v2) -# define __NR_preadv2 __NR_pread64v2 -# endif - ssize_t preadv2 (int fd, const struct iovec *vector, int count, off_t offset, int flags) { -# ifdef __NR_preadv2 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 |