* infrun.c (handle_inferior_event): Add missing call to keep_going
authorMark Kettenis <kettenis@gnu.org>
Thu, 4 May 2000 17:32:49 +0000 (17:32 +0000)
committerMark Kettenis <kettenis@gnu.org>
Thu, 4 May 2000 17:32:49 +0000 (17:32 +0000)
and missing return when handling an ordinary signal from the
inferior.

gdb/ChangeLog
gdb/infrun.c

index c69168d..1e7433c 100644 (file)
@@ -1,3 +1,9 @@
+2000-05-01  Mark Kettenis  <kettenis@gnu.org>
+
+       * infrun.c (handle_inferior_event): Add missing call to keep_going
+       and missing return when handling an ordinary signal from the
+       inferior.
+
 Elena Zannoni  <ezannoni@kwikemart.cygnus.com>
 
         * objfiles.h (SECT_OFF_DATA, SECT_OFF_TEXT, SECT_OFF_BSS,
index fb24203..75cdf73 100644 (file)
@@ -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.  */