* infrun.c (handle_inferior_event): Don't

ignore beakpoints if trap_expected is set.
This commit is contained in:
Vladimir Prus 2007-11-30 10:03:16 +00:00
parent e236ba4424
commit fba57f8f38
2 changed files with 11 additions and 17 deletions

View file

@ -1,3 +1,8 @@
2007-11-30 Vladimir Prus <vladimir@codesourcery.com>
* infrun.c (handle_inferior_event): Don't
ignore beakpoints if trap_expected is set.
2007-11-30 Vladimir Prus <vladimir@codesourcery.com> 2007-11-30 Vladimir Prus <vladimir@codesourcery.com>
Make insert_breakpoints return void. Make insert_breakpoints return void.

View file

@ -1964,23 +1964,12 @@ handle_inferior_event (struct execution_control_state *ecs)
return; return;
} }
/* Don't even think about breakpoints if just proceeded over a
breakpoint. */
if (stop_signal == TARGET_SIGNAL_TRAP && trap_expected)
{
if (debug_infrun)
fprintf_unfiltered (gdb_stdlog, "infrun: trap expected\n");
bpstat_clear (&stop_bpstat);
}
else
{
/* See if there is a breakpoint at the current PC. */ /* See if there is a breakpoint at the current PC. */
stop_bpstat = bpstat_stop_status (stop_pc, ecs->ptid); stop_bpstat = bpstat_stop_status (stop_pc, ecs->ptid);
/* Following in case break condition called a /* Following in case break condition called a
function. */ function. */
stop_print_frame = 1; stop_print_frame = 1;
}
/* NOTE: cagney/2003-03-29: These two checks for a random signal /* NOTE: cagney/2003-03-29: These two checks for a random signal
at one stage in the past included checks for an inferior at one stage in the past included checks for an inferior