]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
* sysdeps/unix/sysv/linux/x86_64/sysconf.c (intel_check_word): Add
authorUlrich Drepper <drepper@redhat.com>
Fri, 10 Nov 2006 07:32:27 +0000 (07:32 +0000)
committerUlrich Drepper <drepper@redhat.com>
Fri, 10 Nov 2006 07:32:27 +0000 (07:32 +0000)
noinline attribute.

2006-11-10  Jakub Jelinek  <jakub@redhat.com>

* sysdeps/unix/sysv/linux/i386/sysconf.c (intel_check_word): Add
noinline attribute.

* sysdeps/gnu/siglist.c (__old_sys_siglist, __old_sys_sigabbrev):
Use __new_sys_siglist instead of _sys_siglist_internal as
second macro argument.
(_old_sys_siglist): Use declare_symbol_alias macro instead of
strong_alias.

2006-11-09  Ulrich Drepper  <drepper@redhat.com>

ChangeLog
sysdeps/gnu/siglist.c
sysdeps/unix/sysv/linux/i386/sysconf.c
sysdeps/unix/sysv/linux/x86_64/sysconf.c

index ea15d6e66e47899e13d5f8c1160947f23882fffc..74c102621be684189ecb93e36b5a27ff8a8318fd 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,19 @@
+2006-11-09  Ulrich Drepper  <drepper@redhat.com>
+
+       * sysdeps/unix/sysv/linux/x86_64/sysconf.c (intel_check_word): Add
+       noinline attribute.
+
+2006-11-10  Jakub Jelinek  <jakub@redhat.com>
+
+       * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_check_word): Add
+       noinline attribute.
+
+       * sysdeps/gnu/siglist.c (__old_sys_siglist, __old_sys_sigabbrev):
+       Use __new_sys_siglist instead of _sys_siglist_internal as
+       second macro argument.
+       (_old_sys_siglist): Use declare_symbol_alias macro instead of
+       strong_alias.
+
 2006-11-09  Ulrich Drepper  <drepper@redhat.com>
 
        [BZ #3493]
index b8d37968e09305c3ac689e74b837d777a610d946..3005f867f0d1e7b98f03916eac8a9f3885883469 100644 (file)
@@ -40,13 +40,15 @@ const char *const __new_sys_sigabbrev[NSIG] =
 strong_alias (__new_sys_sigabbrev, _sys_sigabbrev_internal)
 
 #if SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_1)
-declare_symbol_alias (__old_sys_siglist, _sys_siglist_internal, object,
+declare_symbol_alias (__old_sys_siglist, __new_sys_siglist, object,
                      OLD_SIGLIST_SIZE * __WORDSIZE / 8)
 
-declare_symbol_alias (__old_sys_sigabbrev, _sys_sigabbrev_internal, object,
+declare_symbol_alias (__old_sys_sigabbrev, __new_sys_sigabbrev, object,
+                     OLD_SIGLIST_SIZE * __WORDSIZE / 8)
+
+declare_symbol_alias (_old_sys_siglist, __new_sys_siglist, object,
                      OLD_SIGLIST_SIZE * __WORDSIZE / 8)
 
-strong_alias (__old_sys_siglist, _old_sys_siglist)
 compat_symbol (libc, __old_sys_siglist, _sys_siglist, GLIBC_2_0);
 compat_symbol (libc, _old_sys_siglist, sys_siglist, GLIBC_2_0);
 compat_symbol (libc, __old_sys_sigabbrev, sys_sigabbrev, GLIBC_2_0);
index c9d7f77a0001998f78e75396c7992bda989b47d2..2ffbd5227bc53691669ec5d559d0ff2fff095570 100644 (file)
@@ -140,6 +140,7 @@ intel_02_known_compare (const void *p1, const void *p2)
 
 
 static long int
+__attribute__ ((noinline))
 intel_check_word (int name, unsigned int value, bool *has_level_2,
                  bool *no_level_2_or_3)
 {
index 80c982aa3be99da332b7ee3f29c0206abdf6c341..5a898b7857223ebe8dd596280de2338a95121787 100644 (file)
@@ -101,6 +101,7 @@ intel_02_known_compare (const void *p1, const void *p2)
 
 
 static long int
+__attribute__ ((noinline))
 intel_check_word (int name, unsigned int value, bool *has_level_2,
                  bool *no_level_2_or_3)
 {