2011-03-04 Michael Snyder <msnyder@msnyder-server.eng.vmware.com>
* breakpoint.c (enable_command): Use break instead of continue, and fill in a missing break. (disable_command): Ditto.
This commit is contained in:
parent
1e182ce8c3
commit
488919c487
@ -1,3 +1,9 @@
|
||||
2011-03-04 Michael Snyder <msnyder@msnyder-server.eng.vmware.com>
|
||||
|
||||
* breakpoint.c (enable_command): Use break instead of continue,
|
||||
and fill in a missing break.
|
||||
(disable_command): Ditto.
|
||||
|
||||
2011-03-04 Ulrich Weigand <ulrich.weigand@linaro.org>
|
||||
|
||||
* inflow.c (terminal_init_inferior_with_pgrp): Copy ttystate.
|
||||
|
@ -10930,7 +10930,7 @@ disable_command (char *args, int from_tty)
|
||||
case bp_none:
|
||||
warning (_("attempted to disable apparently deleted breakpoint #%d?"),
|
||||
bpt->number);
|
||||
continue;
|
||||
break;
|
||||
case bp_breakpoint:
|
||||
case bp_tracepoint:
|
||||
case bp_fast_tracepoint:
|
||||
@ -10942,8 +10942,9 @@ disable_command (char *args, int from_tty)
|
||||
case bp_read_watchpoint:
|
||||
case bp_access_watchpoint:
|
||||
disable_breakpoint (bpt);
|
||||
break;
|
||||
default:
|
||||
continue;
|
||||
break;
|
||||
}
|
||||
else if (strchr (args, '.'))
|
||||
{
|
||||
@ -11031,7 +11032,7 @@ enable_command (char *args, int from_tty)
|
||||
case bp_none:
|
||||
warning (_("attempted to enable apparently deleted breakpoint #%d?"),
|
||||
bpt->number);
|
||||
continue;
|
||||
break;
|
||||
case bp_breakpoint:
|
||||
case bp_tracepoint:
|
||||
case bp_fast_tracepoint:
|
||||
@ -11043,8 +11044,9 @@ enable_command (char *args, int from_tty)
|
||||
case bp_read_watchpoint:
|
||||
case bp_access_watchpoint:
|
||||
enable_breakpoint (bpt);
|
||||
break;
|
||||
default:
|
||||
continue;
|
||||
break;
|
||||
}
|
||||
else if (strchr (args, '.'))
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user