Index: infrun.c =================================================================== RCS file: /cvs/src/src/gdb/infrun.c,v retrieving revision 1.97 diff -c -3 -p -r1.97 infrun.c *** infrun.c 24 Feb 2003 21:56:49 -0000 1.97 --- infrun.c 18 Mar 2003 01:40:13 -0000 *************** *** 42,47 **** --- 42,48 ---- #include "inf-loop.h" #include "regcache.h" #include "value.h" + #include "observer.h" /* Prototypes for local functions */ *************** print_stop_reason (enum inferior_stop_re *** 2953,2958 **** --- 2954,2961 ---- void normal_stop (void) { + observer_notify_normal_stop (); + /* As with the notification of thread events, we want to delay notifying the user that we've switched thread context until the inferior actually stops. Index: Makefile.in =================================================================== RCS file: /cvs/src/src/gdb/Makefile.in,v retrieving revision 1.342 diff -c -3 -p -r1.342 Makefile.in *** Makefile.in 17 Mar 2003 23:25:08 -0000 1.342 --- Makefile.in 18 Mar 2003 01:40:15 -0000 *************** infptrace.o: infptrace.c $(defs_h) $(fra *** 1817,1823 **** 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) 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) \ --- 1817,1824 ---- 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) \ ! $(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) \