aboutsummaryrefslogtreecommitdiff
path: root/gdb/inferior.h
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2002-04-24 16:28:16 +0000
committerAndrew Cagney <cagney@redhat.com>2002-04-24 16:28:16 +0000
commitd7bd68ca3c7db1b7336498cb1651e9d782eb11bc (patch)
tree6009817b55b1349a8d0986d4065d106048038a64 /gdb/inferior.h
parentd06f167ab353b02267dc687ee4826888ce0337cc (diff)
downloadfsf-binutils-gdb-d7bd68ca3c7db1b7336498cb1651e9d782eb11bc.zip
fsf-binutils-gdb-d7bd68ca3c7db1b7336498cb1651e9d782eb11bc.tar.gz
fsf-binutils-gdb-d7bd68ca3c7db1b7336498cb1651e9d782eb11bc.tar.bz2
* arch-utils.h: Update copyright.
* gdbarch.sh (PC_IN_SIGTRAMP): Add. * gdbarch.h, gdbarch.c: Re-generate. * inferior.h (IN_SIGTRAMP): Delete definition. * arch-utils.c (legacy_pc_in_sigtramp): New function. * arch-utils.h (legacy_pc_in_sigtramp): Declare. * mips-tdep.c (mips_init_extra_frame_info): Use PC_IN_SIGTRAMP. (mips_dump_tdep): Do not print value of IN_SIGTRAMP. * hppa-tdep.c (pc_in_interrupt_handler): Use PC_IN_SIGTRAMP. (find_proc_framesize): Ditto. * alpha-tdep.c (alpha_osf_skip_sigtramp_frame): Ditto. (alpha_init_extra_frame_info): Ditto. * infrun.c (handle_inferior_event): Ditto. (handle_inferior_event): Ditto. (check_sigtramp2): Ditto. * blockframe.c (create_new_frame): Ditto. (get_prev_frame): Ditto. * ppc-linux-tdep.c: Update comments. * i386-linux-tdep.c: Update comments. * breakpoint.c (bpstat_what): Update comment. * gdbint.texinfo (Target Architecture Definition): Replace IN_SIGTRAMP with PC_IN_SIGTRAMP.
Diffstat (limited to 'gdb/inferior.h')
-rw-r--r--gdb/inferior.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/gdb/inferior.h b/gdb/inferior.h
index c0f100d..2c05f35 100644
--- a/gdb/inferior.h
+++ b/gdb/inferior.h
@@ -403,29 +403,6 @@ extern char *stop_registers;
extern int attach_flag;
-/* Sigtramp is a routine that the kernel calls (which then calls the
- signal handler). On most machines it is a library routine that
- is linked into the executable.
-
- This macro, given a program counter value and the name of the
- function in which that PC resides (which can be null if the
- name is not known), returns nonzero if the PC and name show
- that we are in sigtramp.
-
- On most machines just see if the name is sigtramp (and if we have
- no name, assume we are not in sigtramp). */
-#if !defined (IN_SIGTRAMP)
-#if defined (SIGTRAMP_START)
-#define IN_SIGTRAMP(pc, name) \
- ((pc) >= SIGTRAMP_START(pc) \
- && (pc) < SIGTRAMP_END(pc) \
- )
-#else
-#define IN_SIGTRAMP(pc, name) \
- (name && STREQ ("_sigtramp", name))
-#endif
-#endif
-
/* Possible values for CALL_DUMMY_LOCATION. */
#define ON_STACK 1
#define BEFORE_TEXT_END 2