diff options
author | Jeff Law <law@redhat.com> | 1994-11-24 08:02:01 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1994-11-24 08:02:01 +0000 |
commit | 481faa25acc8ea42f8d5f5e5e37f137806616226 (patch) | |
tree | 337b91a7363832ffd22ea45c5ef30a7d48c3fdaa /gdb/config/tm-sysv4.h | |
parent | b5a37058d497b85520b1cd21d88ce40864a04f46 (diff) | |
download | gdb-481faa25acc8ea42f8d5f5e5e37f137806616226.zip gdb-481faa25acc8ea42f8d5f5e5e37f137806616226.tar.gz gdb-481faa25acc8ea42f8d5f5e5e37f137806616226.tar.bz2 |
* blockframe.c (find_pc_partial_function): Inhibit mst_trampoline
symbol special handling when INHIBIT_SUNSOLIB_TRANSFER_TABLE_HACK
is defined.
* infrun.c (IN_SOLIB_CALL_TRAMPOLINE): Renamed from
IN_SOLIB_TRAMPOLINE. All callers changed.
(IN_SOLIB_RETURN_TRAMPOLINE): Provide default definition.
(wait_for_inferior): Handle single stepping through trampolines on
return paths from shared libraries.
* config/pa/tm-hppa.h (IN_SOLIB_CALL_TRAMPOLINE): Use
in_solib_call_trampoline.
(IN_SOLIB_RETURN_TRAMPOLINE): Use in_solib_return_trampoline.
(INHIBIT_SUNSOLIB_TRANSFER_TABLE_HACK): Define.
* hppa-tdep.c (in_solib_call_trampoline): New function.
(in_solib_return_trampoline): New function.
Diffstat (limited to 'gdb/config/tm-sysv4.h')
-rw-r--r-- | gdb/config/tm-sysv4.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/config/tm-sysv4.h b/gdb/config/tm-sysv4.h index 58ae568..dcb6935 100644 --- a/gdb/config/tm-sysv4.h +++ b/gdb/config/tm-sysv4.h @@ -26,7 +26,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ we cannot always find the shared library trampoline symbols (e.g. on Irix5). */ -#define IN_SOLIB_TRAMPOLINE(pc, name) in_plt_section((pc), (name)) +#define IN_SOLIB_CALL_TRAMPOLINE(pc, name) in_plt_section((pc), (name)) extern int in_plt_section PARAMS ((CORE_ADDR, char *)); /* If PC is in a shared library trampoline code, return the PC |