diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-05-01 16:52:30 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-05-01 16:52:30 +0000 |
commit | fcf70625fc153c636f89293d48208d39033c2c41 (patch) | |
tree | 8b7986bd05cb57c10875767b233081f2317ec166 /gdb/gdbarch.h | |
parent | ac5eccb7a1eb2ffba1d97999d54b71a6cc2454b9 (diff) | |
download | gdb-fcf70625fc153c636f89293d48208d39033c2c41.zip gdb-fcf70625fc153c636f89293d48208d39033c2c41.tar.gz gdb-fcf70625fc153c636f89293d48208d39033c2c41.tar.bz2 |
2004-05-01 Andrew Cagney <cagney@redhat.com>
* gdbarch.sh (DEPRECATED_PC_IN_SIGTRAMP): Delete.
* gdbarch.h, gdbarch.c: Re-generate.
* shnbsd-tdep.c (shnbsd_init_abi): Do not set pc_in_sigtramp.
(shnbsd_pc_in_sigtramp): Delete.
* i386-interix-tdep.c (i386_interix_init_abi): Do not set
pc_in_sigtramp.
* hppa-hpux-tdep.c (hppa_hpux_init_abi): Do not set
pc_in_sigtramp.
* frame.h: Update comments.
* ppc-linux-tdep.c: Update comments.
* breakpoint.c (bpstat_what): Update comments.
Index: doc/ChangeLog
2004-05-01 Andrew Cagney <cagney@redhat.com>
* gdbint.texinfo (Target Architecture Definition): Delete
description of DEPRECATED_PC_IN_SIGTRAMP.
Diffstat (limited to 'gdb/gdbarch.h')
-rw-r--r-- | gdb/gdbarch.h | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/gdb/gdbarch.h b/gdb/gdbarch.h index 033d82f..0ba782c 100644 --- a/gdb/gdbarch.h +++ b/gdb/gdbarch.h @@ -2064,34 +2064,6 @@ extern void set_gdbarch_in_solib_return_trampoline (struct gdbarch *gdbarch, gdb #define IN_SOLIB_RETURN_TRAMPOLINE(pc, name) (gdbarch_in_solib_return_trampoline (current_gdbarch, pc, name)) #endif -/* NOTE: cagney/2004-03-23: DEPRECATED_PC_IN_SIGTRAMP have all been - superseeded by signal trampoline frame sniffers. */ - -#if defined (DEPRECATED_PC_IN_SIGTRAMP) -/* Legacy for systems yet to multi-arch DEPRECATED_PC_IN_SIGTRAMP */ -#if !defined (DEPRECATED_PC_IN_SIGTRAMP_P) -#define DEPRECATED_PC_IN_SIGTRAMP_P() (1) -#endif -#endif - -extern int gdbarch_deprecated_pc_in_sigtramp_p (struct gdbarch *gdbarch); -#if (GDB_MULTI_ARCH > GDB_MULTI_ARCH_PARTIAL) && defined (DEPRECATED_PC_IN_SIGTRAMP_P) -#error "Non multi-arch definition of DEPRECATED_PC_IN_SIGTRAMP" -#endif -#if (GDB_MULTI_ARCH > GDB_MULTI_ARCH_PARTIAL) || !defined (DEPRECATED_PC_IN_SIGTRAMP_P) -#define DEPRECATED_PC_IN_SIGTRAMP_P() (gdbarch_deprecated_pc_in_sigtramp_p (current_gdbarch)) -#endif - -typedef int (gdbarch_deprecated_pc_in_sigtramp_ftype) (CORE_ADDR pc, char *name); -extern int gdbarch_deprecated_pc_in_sigtramp (struct gdbarch *gdbarch, CORE_ADDR pc, char *name); -extern void set_gdbarch_deprecated_pc_in_sigtramp (struct gdbarch *gdbarch, gdbarch_deprecated_pc_in_sigtramp_ftype *deprecated_pc_in_sigtramp); -#if (GDB_MULTI_ARCH > GDB_MULTI_ARCH_PARTIAL) && defined (DEPRECATED_PC_IN_SIGTRAMP) -#error "Non multi-arch definition of DEPRECATED_PC_IN_SIGTRAMP" -#endif -#if !defined (DEPRECATED_PC_IN_SIGTRAMP) -#define DEPRECATED_PC_IN_SIGTRAMP(pc, name) (gdbarch_deprecated_pc_in_sigtramp (current_gdbarch, pc, name)) -#endif - /* A target might have problems with watchpoints as soon as the stack frame of the current function has been destroyed. This mostly happens as the first action in a funtion's epilogue. in_function_epilogue_p() |