summaryrefslogtreecommitdiff
path: root/ldso/ldso/mips/dl-sysdep.h
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2005-05-01 07:13:09 +0000
committerEric Andersen <andersen@codepoet.org>2005-05-01 07:13:09 +0000
commit51d16a55069c65229522a2244697341018f4d17e (patch)
tree94e02c7240be94fa83708494c015083fbe407f3b /ldso/ldso/mips/dl-sysdep.h
parentead7e247a8f03b11551e872b8098aafbce9fa602 (diff)
On mips, gdb explicitly looks for the symbol "__dl_runtime_resolve" so change
the name of our mips resolver function to match gdb's expectations.
Diffstat (limited to 'ldso/ldso/mips/dl-sysdep.h')
-rw-r--r--ldso/ldso/mips/dl-sysdep.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ldso/ldso/mips/dl-sysdep.h b/ldso/ldso/mips/dl-sysdep.h
index 7fc75b7aa..ed11ae980 100644
--- a/ldso/ldso/mips/dl-sysdep.h
+++ b/ldso/ldso/mips/dl-sysdep.h
@@ -37,7 +37,7 @@ do { \
continue; \
\
/* Fill in first two GOT entries according to the ABI */ \
- GOT_BASE[0] = (unsigned long) _dl_linux_resolve; \
+ GOT_BASE[0] = (unsigned long) _dl_runtime_resolve; \
GOT_BASE[1] = (unsigned long) MODULE; \
\
/* Add load address displacement to all local GOT entries */ \
@@ -57,7 +57,7 @@ do { \
#define ELF_TARGET "MIPS"
-unsigned long _dl_linux_resolver(unsigned long sym_index,
+unsigned long __dl_runtime_resolve(unsigned long sym_index,
unsigned long old_gpreg);
struct elf_resolve;