diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-03-11 19:40:00 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-03-11 19:40:00 +0000 |
commit | 6c477888caa491a3a296f5a8ef594cc4aa37b555 (patch) | |
tree | 9dfd0f792c0c309775f8bb684c8a7d50988f33cb /sysdeps | |
parent | f006d3a007b7caffd4c810fa71623b39334a1580 (diff) | |
download | glibc-6c477888caa491a3a296f5a8ef594cc4aa37b555.tar glibc-6c477888caa491a3a296f5a8ef594cc4aa37b555.tar.gz glibc-6c477888caa491a3a296f5a8ef594cc4aa37b555.tar.bz2 glibc-6c477888caa491a3a296f5a8ef594cc4aa37b555.zip |
Update.
2003-03-11 Martin Schwidefsky <schwidefsky@de.ibm.com>
* sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h (__NR_pread64): Define
to __NR_pread if not defined.
(__NR_pwrite64): Define to __NR_pwrite if not defined.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h b/sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h index 6de2dae288..f5a074ff6f 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h +++ b/sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h @@ -31,6 +31,18 @@ /* In newer 2.1 kernels __NR_syscall is missing so we define it here. */ #define __NR_syscall 0 +/* + * Newer kernel versions redefined __NR_pread and __NR_pwrite to + * __NR_pread64 and __NR_pwrite64. We use the new names but have + * to define them on our own for compiling against older kernels. + */ +#ifndef __NR_pread64 +# define __NR_pread64 __NR_pread +#endif +#ifndef __NR_pwrite64 +# define __NR_pwrite64 __NR_pwrite +#endif + #undef SYS_ify #define SYS_ify(syscall_name) __NR_##syscall_name |