diff options
author | Kevin Buettner <kevinb@redhat.com> | 2001-02-22 03:01:27 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2001-02-22 03:01:27 +0000 |
commit | d7fa2ae2549091f294e6dd103a57ddf1219dfe6c (patch) | |
tree | f28343094d9deb829390fe4468891a1f17aac86e /gdb/solib.h | |
parent | 33d01f331b0673ed67fa8a71c9cb90f7d35d16b7 (diff) | |
download | gdb-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.h | 10 |
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 */ |