summaryrefslogtreecommitdiff
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
commit8b4258487bf511901cb98c22b5a745ef982c0b5e (patch)
tree153cf011abfdbae2be708e98a7dbc5bcff4e72d7 /gdb/solib.h
parent43e1c4bec5e6ae00906f14942ab1e25f4eaf818a (diff)
downloadgdb-8b4258487bf511901cb98c22b5a745ef982c0b5e.tar.gz
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 dd8b23cff8d..6022ea25e8e 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 */