]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Mon, 8 Mar 2004 19:35:36 +0000 (19:35 +0000)
committerUlrich Drepper <drepper@redhat.com>
Mon, 8 Mar 2004 19:35:36 +0000 (19:35 +0000)
2004-03-08  Ulrich Drepper  <drepper@redhat.com>

* sysdeps/powerpc/powerpc64/dl-machine.c (_dl_reloc_overflow):
Don't use INTUSE with _dl_signal_error.

2004-03-08  Steven Munroe  <sjmunroe@us.ibm.com>

* sysdeps/powerpc/powerpc64/dl-machine.c(_dl_reloc_overflow): Replace
INTUSE with GLRO.

ChangeLog
nptl/ChangeLog
nptl/sysdeps/s390/tls.h
nptl/sysdeps/unix/sysv/linux/powerpc/Versions
sysdeps/powerpc/powerpc64/dl-machine.c

index 10ed7b714a3ed74f0b3c0319cd74457438a3d316..a68e4a1731eda1967bfcc5dc588d0d02d2838de2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2004-03-08  Ulrich Drepper  <drepper@redhat.com>
+
+       * sysdeps/powerpc/powerpc64/dl-machine.c (_dl_reloc_overflow):
+       Don't use INTUSE with _dl_signal_error.
+
+2004-03-08  Steven Munroe  <sjmunroe@us.ibm.com>
+
+       * sysdeps/powerpc/powerpc64/dl-machine.c(_dl_reloc_overflow): Replace
+       INTUSE with GLRO.
+
 2004-03-08  Richard Henderson  <rth@redhat.com>
 
        * sysdeps/alpha/soft-fp/ots_cvtxt.c (_OtsConvertFloatXT): Fix typo
index b5ee107e236870f80a44f7b26c257a2c26f72786..38cb75ae663a18089f0545c9448d00cb71407fa2 100644 (file)
@@ -1,7 +1,12 @@
+2004-03-08  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * sysdeps/s390/tls.h (INIT_SYSINFO): _dl_sysinfo is now in
+       _rtld_global_ro.
+
 2004-03-07  Ulrich Drepper  <drepper@redhat.com>
 
        * sysdeps/ia64/tls.h (INIT_SYSINFO): _dl_sysinfo is now in
-       _rtlf_global_ro.
+       _rtld_global_ro.
 
        * tst-once4.c: Remove unnecessary macro definition.
 
index b03891038743029f80edd3ebb9a500c66b68d723..c9b991df32d278a93adac465904f402dee5c31a5 100644 (file)
@@ -108,7 +108,7 @@ typedef struct
 
 #if defined NEED_DL_SYSINFO && defined SHARED
 # define INIT_SYSINFO \
-  _head->sysinfo = GL(dl_sysinfo)
+  _head->sysinfo = GLRO(dl_sysinfo)
 #else
 # define INIT_SYSINFO
 #endif
index f63cf41358bd363a244ef708b0d9fade0a36d194..997784798487d45cd55dcedc44f29e26f0eefefb 100644 (file)
@@ -1,5 +1,5 @@
 libpthread {
   GLIBC_2.3.4 {
-       longjmp; siglongjmp;
+    longjmp; siglongjmp;
   }
 }
index 167af998a7b5dca35cdc6ce0d0df1bf471d619a9..6d9a585d220931df75e6de35dfc41b9d04cb40fa 100644 (file)
@@ -1,5 +1,5 @@
 /* Machine-dependent ELF dynamic relocation functions.  PowerPC64 version.
-   Copyright (C) 1995-2002, 2003 Free Software Foundation, Inc.
+   Copyright (C) 1995-2002, 2003, 2004 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -44,5 +44,5 @@ _dl_reloc_overflow (struct link_map *map,
       t = stpcpy (t, "'");
     }
   t = stpcpy (t, " out of range");
-  INTUSE (_dl_signal_error) (0, map->l_name, NULL, buffer);
+  _dl_signal_error (0, map->l_name, NULL, buffer);
 }