mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-06 14:49:38 +08:00
* 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.
This commit is contained in:
@ -1,3 +1,9 @@
|
|||||||
|
2008-03-14 Pedro Alves <pedro@codesourcery.com>
|
||||||
|
|
||||||
|
* 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 <pedro@codesourcery.com>
|
2008-03-14 Pedro Alves <pedro@codesourcery.com>
|
||||||
|
|
||||||
* top.c (execute_command): Enable break, info and interrupt
|
* top.c (execute_command): Enable break, info and interrupt
|
||||||
|
@ -23,7 +23,6 @@
|
|||||||
#include "event-loop.h"
|
#include "event-loop.h"
|
||||||
#include "event-top.h"
|
#include "event-top.h"
|
||||||
#include "inf-loop.h"
|
#include "inf-loop.h"
|
||||||
#include "remote.h"
|
|
||||||
#include "exceptions.h"
|
#include "exceptions.h"
|
||||||
|
|
||||||
static int fetch_inferior_event_wrapper (gdb_client_data client_data);
|
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 ();
|
do_all_intermediate_continuations ();
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case INF_QUIT_REQ:
|
case INF_QUIT_REQ:
|
||||||
/* FIXME: ezannoni 1999-10-04. This call should really be a
|
target_stop ();
|
||||||
target vector entry, so that it can be used for any kind of
|
|
||||||
targets. */
|
|
||||||
async_remote_interrupt_twice (NULL);
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case INF_TIMER:
|
case INF_TIMER:
|
||||||
|
Reference in New Issue
Block a user