From 7ec106a3b8b122df3fa21b672527cddc465fef77 Mon Sep 17 00:00:00 2001 From: palves Date: Fri, 14 Mar 2008 08:01:28 +0000 Subject: [PATCH] * inf-loop.c (inferior_event_handler): Don't include remote.h. Call target_stop in the INF_QUIT_REQ case. * Makefile.in (inf-loop.o): Update. --- gdb/ChangeLog | 6 ++++++ gdb/inf-loop.c | 8 ++------ 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 3f7b0a8088..ffa39094bf 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,11 @@ 2008-03-14 Pedro Alves + * inf-loop.c (inferior_event_handler): Don't include remote.h. + Call target_stop in the INF_QUIT_REQ case. + * Makefile.in (inf-loop.o): Update. + +2008-03-14 Pedro Alves + * top.c (execute_command): Enable break, info and interrupt commands in async mode. diff --git a/gdb/inf-loop.c b/gdb/inf-loop.c index b6f8bb8d72..5c49177cd8 100644 --- a/gdb/inf-loop.c +++ b/gdb/inf-loop.c @@ -23,7 +23,6 @@ #include "event-loop.h" #include "event-top.h" #include "inf-loop.h" -#include "remote.h" #include "exceptions.h" static int fetch_inferior_event_wrapper (gdb_client_data client_data); @@ -83,11 +82,8 @@ inferior_event_handler (enum inferior_event_type event_type, do_all_intermediate_continuations (); break; - case INF_QUIT_REQ: - /* FIXME: ezannoni 1999-10-04. This call should really be a - target vector entry, so that it can be used for any kind of - targets. */ - async_remote_interrupt_twice (NULL); + case INF_QUIT_REQ: + target_stop (); break; case INF_TIMER: -- 2.11.0