From cc0068f2e1d7a34c47292f6aa3d8011ebc19ac62 Mon Sep 17 00:00:00 2001 From: Pedro Alves Date: Sat, 16 Aug 2008 01:04:15 +0000 Subject: [PATCH] * infrun.c (fetch_inferior_event): Only call normal_stop if not stopping quietly. --- gdb/ChangeLog | 5 +++++ gdb/infrun.c | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 4cc052a846..d709b5b409 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2008-08-16 Pedro Alves + + * infrun.c (fetch_inferior_event): Only call normal_stop if not + stopping quietly. + 2008-08-15 Luis Machado * rs6000-tdep: Include "features/rs6000/powerpc-vsx32.c". diff --git a/gdb/infrun.c b/gdb/infrun.c index 9f3fb8cb91..de7de79071 100644 --- a/gdb/infrun.c +++ b/gdb/infrun.c @@ -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 -- 2.11.0