diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-04-15 14:29:21 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-04-15 14:29:21 +0000 |
commit | 7a46442073403bcb8560c4763768aecee620846b (patch) | |
tree | 7804ba214359560a69ce42a7d5723e3bc0102d8f /gdb/infrun.c | |
parent | e36ad5279939b02e2506528bcd786f94480549b2 (diff) | |
download | gdb-7a46442073403bcb8560c4763768aecee620846b.zip gdb-7a46442073403bcb8560c4763768aecee620846b.tar.gz gdb-7a46442073403bcb8560c4763768aecee620846b.tar.bz2 |
2004-04-15 Andrew Cagney <cagney@redhat.com>
* observer.c (normal_stop_subject, observer_notify_normal_stop)
(observer_normal_stop_notification_stub)
(observer_attach_normal_stop, observer_detach_normal_stop):
Delete, replaced by #include "observer.inc".
* infrun.c (normal_stop): Pass "stop_bpstat" to
observer_notify_normal_stop.
* Makefile.in (observer_inc): Define.
(observer.o): Update dependencies.
(observer.h, observer.inc): New rules.
* observer.h: Delete file.
* observer.sh: New file.
Index: doc/ChangeLog
2004-04-08 Andrew Cagney <cagney@redhat.com>
* observer.texi (GDB Observers): Rework, provide generic observer
definitions and then a list of observable events.
Diffstat (limited to 'gdb/infrun.c')
-rw-r--r-- | gdb/infrun.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/infrun.c b/gdb/infrun.c index b64325a..611a8f4 100644 --- a/gdb/infrun.c +++ b/gdb/infrun.c @@ -3276,7 +3276,7 @@ normal_stop (void) done: annotate_stopped (); - observer_notify_normal_stop (); + observer_notify_normal_stop (stop_bpstat); } static int |