diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-07-02 08:49:09 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-07-02 08:49:09 +0000 |
commit | fcdac13afa00ec69b306669106fd6f30055a56ac (patch) | |
tree | 8da594163630c773134b1327ed78730ce6dbee80 /sysdeps/unix | |
parent | ef8783de8fbe66520383824da0528b5c2a04cda9 (diff) | |
download | glibc-fcdac13afa00ec69b306669106fd6f30055a56ac.tar.gz glibc-fcdac13afa00ec69b306669106fd6f30055a56ac.tar.xz glibc-fcdac13afa00ec69b306669106fd6f30055a56ac.zip |
Update.
* sysdeps/generic/dl-sysdep.c (_dl_sysdep_start): Don't set GL(dl_sysinfo) unles GL(dl_sysinfo_dso) is also set. * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_VSYSCALL only for 2.5.69 and up since this is when the vsyscall DSO was added.
Diffstat (limited to 'sysdeps/unix')
-rw-r--r-- | sysdeps/unix/sysv/linux/kernel-features.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/kernel-features.h b/sysdeps/unix/sysv/linux/kernel-features.h index d26930bce6..2d6953350b 100644 --- a/sysdeps/unix/sysv/linux/kernel-features.h +++ b/sysdeps/unix/sysv/linux/kernel-features.h @@ -307,8 +307,8 @@ #endif /* For x86, support for the sysenter instruction was available in - 2.5.53. */ -#if __LINUX_KERNEL_VERSION >= 132405 && defined __i386__ + 2.5.53. But the unwind information was added only in 2.5.69. */ +#if __LINUX_KERNEL_VERSION >= 132421 && defined __i386__ # define __ASSUME_VSYSCALL 1 #endif |