mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-20 01:50:24 +08:00
* infrun.c (fetch_inferior_event): Only call normal_stop if not
stopping quietly.
This commit is contained in:
@ -1577,7 +1577,9 @@ fetch_inferior_event (void *client_data)
|
||||
{
|
||||
delete_step_resume_breakpoint (&step_resume_breakpoint);
|
||||
|
||||
normal_stop ();
|
||||
if (stop_soon == NO_STOP_QUIETLY)
|
||||
normal_stop ();
|
||||
|
||||
if (step_multi && stop_step)
|
||||
inferior_event_handler (INF_EXEC_CONTINUE, NULL);
|
||||
else
|
||||
|
Reference in New Issue
Block a user