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 /sysdeps | |
parent | bebb184e55321623f1f93bcce7af0d092f536bfb (diff) | |
download | glibc-ecda4bdaa1835e9a7865667690e3e264c25085e6.tar.gz |
Update.
* sysdeps/unix/sysv/linux/kernel-features.h
(__ASSUME_NEW_GETRLIMIT_SYSCALL): New definition.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/unix/sysv/linux/kernel-features.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/kernel-features.h b/sysdeps/unix/sysv/linux/kernel-features.h index db2bfe24d5..f01f2ddaca 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 |