aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorDaniel Jacobowitz <drow@false.org>2007-05-23 11:39:17 +0000
committerDaniel Jacobowitz <drow@false.org>2007-05-23 11:39:17 +0000
commitab14ee8d0c8f64de6487735ef1e33ccbf3bea3c3 (patch)
treee132f70dffb4db2235b7c07bc313d1acd2194cea /gdb
parent4a594fce16683232bbb2e239d3e3ebcfcde16d1a (diff)
downloadgdb-ab14ee8d0c8f64de6487735ef1e33ccbf3bea3c3.zip
gdb-ab14ee8d0c8f64de6487735ef1e33ccbf3bea3c3.tar.gz
gdb-ab14ee8d0c8f64de6487735ef1e33ccbf3bea3c3.tar.bz2
* breakpoint.h (enum bpstat_what_main_action): Remove
BPSTAT_WHAT_THROUGH_SIGTRAMP. * infrun.c (process_event_stop_test): Do not check for it.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog6
-rw-r--r--gdb/breakpoint.h4
-rw-r--r--gdb/infrun.c9
3 files changed, 6 insertions, 13 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index d24db0b..450bbee 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,9 @@
+2007-05-23 Daniel Jacobowitz <dan@codesourcery.com>
+
+ * 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 <chris@mips.com>
Maciej W. Rozycki <macro@mips.com>
diff --git a/gdb/breakpoint.h b/gdb/breakpoint.h
index 639f991..9f0b940 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 dccd9ec..f90a556 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:
{