From 4b172769b29087fbf9989494e7d09b8c4347208e Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Sat, 14 Sep 2002 08:32:37 +0000 Subject: * sysdeps/unix/sysv/linux/pread.c: __NR_pread64 may be defined instead of __NR_pread. * sysdeps/unix/sysv/linux/pread64.c: Likewise. * sysdeps/unix/sysv/linux/pwrite.c: __NR_pwrite64 may be defined instead of __NR_pwrite. * sysdeps/unix/sysv/linux/pwrite64.c: Likewise. --- sysdeps/unix/sysv/linux/pwrite.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'sysdeps/unix/sysv/linux/pwrite.c') diff --git a/sysdeps/unix/sysv/linux/pwrite.c b/sysdeps/unix/sysv/linux/pwrite.c index 6a68adcdbd..45fca41aa3 100644 --- a/sysdeps/unix/sysv/linux/pwrite.c +++ b/sysdeps/unix/sysv/linux/pwrite.c @@ -28,6 +28,13 @@ #include "kernel-features.h" +#ifdef __NR_pwrite64 /* Newer kernels renamed but it's the same. */ +# ifdef __NR_pwrite +# error "__NR_pwrite and __NR_pwrite64 both defined???" +# endif +# define __NR_pwrite __NR_pread64 +#endif + #if defined __NR_pwrite || __ASSUME_PWRITE_SYSCALL > 0 /* The order of hi, lo depends on endianness. */ -- cgit v1.2.3