From: drow Date: Wed, 23 May 2007 11:39:14 +0000 (+0000) Subject: * breakpoint.h (enum bpstat_what_main_action): Remove X-Git-Tag: preoverlapped~505 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=6e1012af4b25fd6135997245ce887560b0a98588;p=pf3gnuchains%2Fpf3gnuchains4x.git * breakpoint.h (enum bpstat_what_main_action): Remove BPSTAT_WHAT_THROUGH_SIGTRAMP. * infrun.c (process_event_stop_test): Do not check for it. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index d24db0b801..450bbeedd0 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2007-05-23 Daniel Jacobowitz + + * breakpoint.h (enum bpstat_what_main_action): Remove + BPSTAT_WHAT_THROUGH_SIGTRAMP. + * infrun.c (process_event_stop_test): Do not check for it. + 2007-05-22 Chris Dearman Maciej W. Rozycki diff --git a/gdb/breakpoint.h b/gdb/breakpoint.h index 639f991b0a..9f0b940d66 100644 --- a/gdb/breakpoint.h +++ b/gdb/breakpoint.h @@ -486,10 +486,6 @@ enum bpstat_what_main_action /* Clear step resume breakpoint, and keep checking. */ BPSTAT_WHAT_STEP_RESUME, - /* Clear through_sigtramp breakpoint, muck with trap_expected, and keep - checking. */ - BPSTAT_WHAT_THROUGH_SIGTRAMP, - /* Check the dynamic linker's data structures for new libraries, then keep checking. */ BPSTAT_WHAT_CHECK_SHLIBS, diff --git a/gdb/infrun.c b/gdb/infrun.c index dccd9ec073..f90a556e0e 100644 --- a/gdb/infrun.c +++ b/gdb/infrun.c @@ -2178,15 +2178,6 @@ process_event_stop_test: } break; - case BPSTAT_WHAT_THROUGH_SIGTRAMP: - if (debug_infrun) - fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_THROUGH_SIGTRAMP\n"); - /* If were waiting for a trap, hitting the step_resume_break - doesn't count as getting it. */ - if (trap_expected) - ecs->another_trap = 1; - break; - case BPSTAT_WHAT_CHECK_SHLIBS: case BPSTAT_WHAT_CHECK_SHLIBS_RESUME_FROM_HOOK: {