* 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 c69168d238de0c20cc56bcdd5c65142218bfa309..1e7433cdef24cde7c2312e58c2a109e9d0144165 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 fb24203cb112eee6674448a5cf838c1356900feb..75cdf731aa3840247b5276fd9f679cf5c2ce3264 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.  */
This page took 0.028606 seconds and 4 git commands to generate.