This is the mail archive of the libc-hacker@sources.redhat.com mailing list for the glibc project.

Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] PPC64 dl-machine.c change to use GLRO


Found this builf break in this morning cvs. Need to change INTUSE to GLRO for dl-machine.c
2004-03-08  Steven Munroe  <sjmunroe@us.ibm.com>

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

diff -urN libc23-cvstip-20040308/sysdeps/powerpc/powerpc64/dl-machine.c libc23/sysdeps/powerpc/powerpc64/dl-machine.c
--- libc23-cvstip-20040308/sysdeps/powerpc/powerpc64/dl-machine.c	2003-05-15 23:20:52.000000000 -0500
+++ libc23/sysdeps/powerpc/powerpc64/dl-machine.c	2004-03-08 10:22:46.000000000 -0600
@@ -44,5 +44,5 @@
       t = stpcpy (t, "'");
     }
   t = stpcpy (t, " out of range");
-  INTUSE (_dl_signal_error) (0, map->l_name, NULL, buffer);
+  GLRO(dl_signal_error) (0, map->l_name, NULL, buffer);
 }

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]