From: Mark Kettenis Date: Thu, 4 May 2000 17:32:49 +0000 (+0000) Subject: * infrun.c (handle_inferior_event): Add missing call to keep_going X-Git-Url: http://git.efficios.com/?a=commitdiff_plain;h=e441088d68ff1139f88e4a78ba1035d4f6190ab9;p=deliverable%2Fbinutils-gdb.git * infrun.c (handle_inferior_event): Add missing call to keep_going and missing return when handling an ordinary signal from the inferior. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index c69168d238..1e7433cdef 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2000-05-01 Mark Kettenis + + * infrun.c (handle_inferior_event): Add missing call to keep_going + and missing return when handling an ordinary signal from the + inferior. + Elena Zannoni * objfiles.h (SECT_OFF_DATA, SECT_OFF_TEXT, SECT_OFF_BSS, diff --git a/gdb/infrun.c b/gdb/infrun.c index fb24203cb1..75cdf731aa 100644 --- a/gdb/infrun.c +++ b/gdb/infrun.c @@ -2274,6 +2274,8 @@ handle_inferior_event (struct execution_control_state *ecs) the HP-UX maintainer to furnish a fix that doesn't break other platforms. --JimB, 20 May 1999 */ check_sigtramp2 (ecs); + keep_going (ecs); + return; } /* Handle cases caused by hitting a breakpoint. */