diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-03-01 21:34:36 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-03-01 21:34:36 +0000 |
commit | afedc4afeec9bbb7f4015bae14bfea8d4d08cd24 (patch) | |
tree | 8b42eb841d9e383e7ffb0f4da43ba4c16e1d4510 /sysdeps/unix/sysv/linux/kernel-features.h | |
parent | cff08c81107ae1c8b1581b5e0a534938fd67fc45 (diff) | |
download | glibc-afedc4afeec9bbb7f4015bae14bfea8d4d08cd24.tar glibc-afedc4afeec9bbb7f4015bae14bfea8d4d08cd24.tar.gz glibc-afedc4afeec9bbb7f4015bae14bfea8d4d08cd24.tar.bz2 glibc-afedc4afeec9bbb7f4015bae14bfea8d4d08cd24.zip |
Update.
2004-03-01 Ulrich Drepper <drepper@redhat.com>
* sysdeps/unix/sysv/linux/kernel-features.h: Add support for
__ASSUME_GETDENTS32_D_TYPE.
* sysdeps/unix/sysv/linux/getdents.c: For 2.6.4+ kernels you
getdents syscall again since it provides d_type information.
* manual/install.texi (Tools for Compilation): Autoconf 2.53 is
required.
Diffstat (limited to 'sysdeps/unix/sysv/linux/kernel-features.h')
-rw-r--r-- | sysdeps/unix/sysv/linux/kernel-features.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/kernel-features.h b/sysdeps/unix/sysv/linux/kernel-features.h index 0f35a3ccc3..b52fa73e0d 100644 --- a/sysdeps/unix/sysv/linux/kernel-features.h +++ b/sysdeps/unix/sysv/linux/kernel-features.h @@ -384,11 +384,17 @@ SIMD (AKA Altivec, VMX) instructions and register state. This changes the overall size of the sigcontext and adds the swapcontext syscall. */ #if __LINUX_KERNEL_VERSION >= 132608 && defined __powerpc__ -# define __ASSUME_SWAPCONTEXT_SYSCALL 1 +# define __ASSUME_SWAPCONTEXT_SYSCALL 1 #endif /* The CLONE_DETACHED flag is not necessary in 2.6.2 kernels, it is implied. */ #if __LINUX_KERNEL_VERSION >= 132610 -# define __ASSUME_NO_CLONE_DETACHED 1 +# define __ASSUME_NO_CLONE_DETACHED 1 +#endif + +/* Starting with version 2.6.4-rc1 the getdents syscall returns d_type + information as well. */ +#if __LINUX_KERNEL_VERSION >= 132612 +# define __ASSUME_GETDENTS32_D_TYPE 1 #endif |