diff options
author | Mark Kettenis <kettenis@gnu.org> | 2000-05-04 17:32:49 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2000-05-04 17:32:49 +0000 |
commit | f6efec4e6c777b0703ef84c079e4c7950c2f0096 (patch) | |
tree | 52633d92ba81a4c4e2895286936ab1352a5d6270 | |
parent | 3685e697fd1a7c75bf6e5e03996d97d0aa8b6e15 (diff) | |
download | gdb-f6efec4e6c777b0703ef84c079e4c7950c2f0096.tar.gz |
* infrun.c (handle_inferior_event): Add missing call to keep_going
and missing return when handling an ordinary signal from the
inferior.
-rw-r--r-- | gdb/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/infrun.c | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index c69168d238d..1e7433cdef2 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -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, diff --git a/gdb/infrun.c b/gdb/infrun.c index fb24203cb11..75cdf731aa3 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. */ |