1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00
* 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.
This commit is contained in:
Ulrich Drepper
2003-07-02 08:49:09 +00:00
parent ef8783de8f
commit fcdac13afa
3 changed files with 22 additions and 3 deletions

View File

@ -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