diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-11-02 01:01:03 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-11-02 01:01:03 +0000 |
commit | ecda4bdaa1835e9a7865667690e3e264c25085e6 (patch) | |
tree | 0bb8e01f14c5698b6828f7f4551ff1e26823f18a | |
parent | bebb184e55321623f1f93bcce7af0d092f536bfb (diff) | |
download | glibc-ecda4bdaa1835e9a7865667690e3e264c25085e6.zip glibc-ecda4bdaa1835e9a7865667690e3e264c25085e6.tar.gz glibc-ecda4bdaa1835e9a7865667690e3e264c25085e6.tar.bz2 |
Update.
* sysdeps/unix/sysv/linux/kernel-features.h
(__ASSUME_NEW_GETRLIMIT_SYSCALL): New definition.
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/kernel-features.h | 5 |
2 files changed, 7 insertions, 0 deletions
@@ -2,6 +2,8 @@ * sysdeps/unix/sysv/linux/net/if_arp.h: Add ARPHDR_HWX25. + * sysdeps/unix/sysv/linux/kernel-features.h + (__ASSUME_NEW_GETRLIMIT_SYSCALL): New definition. * sysdeps/unix/sysv/linux/i386/getrlimit.c: New file. * manual/texinfo.tex: Updated. diff --git a/sysdeps/unix/sysv/linux/kernel-features.h b/sysdeps/unix/sysv/linux/kernel-features.h index db2bfe2..f01f2dd 100644 --- a/sysdeps/unix/sysv/linux/kernel-features.h +++ b/sysdeps/unix/sysv/linux/kernel-features.h @@ -74,3 +74,8 @@ #if __LINUX_KERNEL_VERSION >= 131408 # define __ASSUME_SIOCGIFNAME 1 #endif + +/* On x86 another `getrlimit' syscall was added in 2.3.25. */ +#if __LINUX_KERNEL_VERSION >= 131865 && defined __i386__ +# define __ASSUME_NEW_GETRLIMIT_SYSCALL 1 +#endif |