mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-26 11:33:45 +08:00
* infrun.c (observer.h): Add #include.
(normal_stop): Add call to observer_notify_normal_stop. * Makefile.in (infrun.o): Add dependency on observer.h.
This commit is contained in:
parent
7daf4f5bcc
commit
06600e0681
@ -1,3 +1,9 @@
|
||||
2003-03-18 J. Brobecker <brobecker@gnat.com>
|
||||
|
||||
* infrun.c (observer.h): Add #include.
|
||||
(normal_stop): Add call to observer_notify_normal_stop.
|
||||
* Makefile.in (infrun.o): Add dependency on observer.h.
|
||||
|
||||
2003-03-18 J. Brobecker <brobecker@gnat.com>
|
||||
|
||||
Continuing work to convert the hppa targets to multiarch partial.
|
||||
|
@ -1817,7 +1817,8 @@ infptrace.o: infptrace.c $(defs_h) $(frame_h) $(inferior_h) $(target_h) \
|
||||
infrun.o: infrun.c $(defs_h) $(gdb_string_h) $(symtab_h) $(frame_h) \
|
||||
$(inferior_h) $(breakpoint_h) $(gdb_wait_h) $(gdbcore_h) $(gdbcmd_h) \
|
||||
$(cli_script_h) $(target_h) $(gdbthread_h) $(annotate_h) \
|
||||
$(symfile_h) $(top_h) $(inf_loop_h) $(regcache_h) $(value_h)
|
||||
$(symfile_h) $(top_h) $(inf_loop_h) $(regcache_h) $(value_h) \
|
||||
$(observer_h)
|
||||
inftarg.o: inftarg.c $(defs_h) $(frame_h) $(inferior_h) $(target_h) \
|
||||
$(gdbcore_h) $(command_h) $(gdb_stat_h) $(gdb_wait_h) $(inflow_h)
|
||||
infttrace.o: infttrace.c $(defs_h) $(frame_h) $(inferior_h) $(target_h) \
|
||||
|
@ -42,6 +42,7 @@
|
||||
#include "inf-loop.h"
|
||||
#include "regcache.h"
|
||||
#include "value.h"
|
||||
#include "observer.h"
|
||||
|
||||
/* Prototypes for local functions */
|
||||
|
||||
@ -3113,6 +3114,7 @@ normal_stop (void)
|
||||
|
||||
done:
|
||||
annotate_stopped ();
|
||||
observer_notify_normal_stop ();
|
||||
}
|
||||
|
||||
static int
|
||||
|
Loading…
Reference in New Issue
Block a user