aboutsummaryrefslogtreecommitdiff
path: root/gdb/solib.h
diff options
context:
space:
mode:
authorKevin Buettner <kevinb@redhat.com>2001-02-22 03:01:27 +0000
committerKevin Buettner <kevinb@redhat.com>2001-02-22 03:01:27 +0000
commitd7fa2ae2549091f294e6dd103a57ddf1219dfe6c (patch)
treef28343094d9deb829390fe4468891a1f17aac86e /gdb/solib.h
parent33d01f331b0673ed67fa8a71c9cb90f7d35d16b7 (diff)
downloadgdb-d7fa2ae2549091f294e6dd103a57ddf1219dfe6c.zip
gdb-d7fa2ae2549091f294e6dd103a57ddf1219dfe6c.tar.gz
gdb-d7fa2ae2549091f294e6dd103a57ddf1219dfe6c.tar.bz2
Made changes to shared library support and added more of the support needed
for AIX/IA-64.
Diffstat (limited to 'gdb/solib.h')
-rw-r--r--gdb/solib.h10
1 files changed, 3 insertions, 7 deletions
diff --git a/gdb/solib.h b/gdb/solib.h
index dd8b23c..6022ea2 100644
--- a/gdb/solib.h
+++ b/gdb/solib.h
@@ -186,13 +186,9 @@ extern char *solib_address (CORE_ADDR); /* solib.c */
#define PC_SOLIB(addr) solib_address (addr)
-#ifdef SVR4_SHARED_LIBS
-
/* Return 1 if PC lies in the dynamic symbol resolution code of the
- SVR4 run time loader. */
-
-#define IN_SOLIB_DYNSYM_RESOLVE_CODE(pc) in_svr4_dynsym_resolve_code (pc)
+ run time loader. */
-extern int in_svr4_dynsym_resolve_code (CORE_ADDR);
+#define IN_SOLIB_DYNSYM_RESOLVE_CODE(pc) in_solib_dynsym_resolve_code (pc)
-#endif
+extern int in_solib_dynsym_resolve_code (CORE_ADDR); /* solib.c */