diff options
author | Tom Tromey <tromey@redhat.com> | 2008-07-28 17:53:52 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2008-07-28 17:53:52 +0000 |
commit | 7f4b89d1b63f8ba812b911639f264b8e7ff51285 (patch) | |
tree | 9f6fcf202733155f065bdb221bddc5f98c7b8a3f /gdb/Makefile.in | |
parent | 8641e68297c9812b59ab59f786c00087d15feec9 (diff) | |
download | gdb-7f4b89d1b63f8ba812b911639f264b8e7ff51285.zip gdb-7f4b89d1b63f8ba812b911639f264b8e7ff51285.tar.gz gdb-7f4b89d1b63f8ba812b911639f264b8e7ff51285.tar.bz2 |
* annotate.h (deprecated_annotate_starting_hook): Remove.
(deprecated_annotate_stopped_hook): Remove.
(deprecated_annotate_exited_hook): Remove.
* Makefile.in (annotate.o): Depend on observer_h.
* top.c (deprecated_delete_breakpoint_hook): Remove.
(deprecated_create_breakpoint_hook): Likewise.
(deprecated_modify_breakpoint_hook): Likewise.
* interps.c (clear_interpreter_hooks): Update for removed hooks.
* breakpoint.c (mention): Don't call removed hook.
(delete_breakpoint): Likewise.
(disable_breakpoint): Likewise.
(do_enable_breakpoint): Likewise.
* annotate.c: Include observer.h.
(breakpoint_changed): Change type of argument.
(_initialize_annotate): Register observers.
(deprecated_annotate_starting_hook): Remove.
(deprecated_annotate_stopped_hook): Remove.
(deprecated_annotate_exited_hook): Remove.
(annotate_starting): Update for hook removal.
(annotate_stopped): Likewise.
(annotate_exited): Likewise.
* defs.h (deprecated_delete_breakpoint_hook): Remove.
(deprecated_create_breakpoint_hook): Likewise.
(deprecated_modify_breakpoint_hook): Likewise.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 312a8df..a24e29b 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -1908,7 +1908,7 @@ amd64-tdep.o: amd64-tdep.c $(defs_h) $(arch_utils_h) $(block_h) \ $(regset_h) $(symfile_h) $(gdb_assert_h) $(amd64_tdep_h) \ $(i387_tdep_h) annotate.o: annotate.c $(defs_h) $(annotate_h) $(value_h) $(target_h) \ - $(gdbtypes_h) $(breakpoint_h) + $(gdbtypes_h) $(breakpoint_h) $(observer_h) arch-utils.o: arch-utils.c $(defs_h) $(arch_utils_h) $(buildsym_h) \ $(gdbcmd_h) $(inferior_h) $(gdb_string_h) $(regcache_h) \ $(gdb_assert_h) $(sim_regno_h) $(gdbcore_h) $(osabi_h) $(version_h) \ |