diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2007-05-11 19:55:20 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2007-05-11 19:55:20 +0000 |
commit | 06d3b283b148a3ab8ff85a50fb127973524e700c (patch) | |
tree | 4ba2d7fb06e44c9d4f6276211f4378d0e99e8e8d /gdb/rs6000-nat.c | |
parent | 93ce7684566b4347cf4135f828dcffdb48417ebb (diff) | |
download | gdb-06d3b283b148a3ab8ff85a50fb127973524e700c.zip gdb-06d3b283b148a3ab8ff85a50fb127973524e700c.tar.gz gdb-06d3b283b148a3ab8ff85a50fb127973524e700c.tar.bz2 |
doc/ChangeLog:
* observer.texi (GDB Observers): New observer "new_objfile".
ChangeLog:
* observer.sh: Add "struct objfile" forward declaration.
* target.h (deprecated_target_new_objfile_hook): Remove.
* symfile.c (deprecated_target_new_objfile_hook): Remove.
(clear_symtab_users): Call observer_notify_new_objfile.
(symbol_file_add_with_addrs_or_offsets): Likewise.
* rs6000-nat.c: Include "observer.h".
(vmap_ldinfo): Call observer_notify_new_objfile.
(xcoff_relocate_core): Likewise.
* remote.c (remote_new_objfile_chain): Remove.
(remote_new_objfile): Do not call remote_new_objfile_chain.
(_initialize_remote): Use observer_attach_new_objfile.
* tui/tui-hooks.c (tui_target_new_objfile_chain): Remove.
(tui_new_objfile_hook): Do not call tui_target_new_objfile_chain.
(_initialize_tui_hooks): Use observer_attach_new_objfile.
* aix-thread.c: Include "observer.h".
(target_new_objfile_chain): Remove.
(new_objfile): Do not call target_new_objfile_chain.
(_initialize_aix_thread): Use observer_attach_new_objfile.
* hpux-thread.c: Include "observer.h"
(target_new_objfile_chain): Remove.
(hpux_thread_new_objfile): Make static. Do not call
target_new_objfile_chain.
(_initialize_hpux_thread): Use observer_attach_new_objfile.
* linux-thread-db.c: Include "observer.h".
(target_new_objfile_chain): Remove.
(thread_db_new_objfile): Do not call target_new_objfile_chain.
(_initialize_thread_db): Use observer_attach_new_objfile.
* sol-thread.c: Include "observer.h".
(target_new_objfile_chain): Remove.
(sol_thread_new_objfile): Make static. Do not call
target_new_objfile_chain.
(_initialize_sol_thread): Use observer_attach_new_objfile.
* Makefile.in (aix-thread.o, hpux-thread.o, linux-thread-db.o,
rs6000-nat.o, sol-thread.o, tui-hooks.o): Add dependency on
$(observer_h).
Diffstat (limited to 'gdb/rs6000-nat.c')
-rw-r--r-- | gdb/rs6000-nat.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gdb/rs6000-nat.c b/gdb/rs6000-nat.c index 9adc1fd..efb40e6 100644 --- a/gdb/rs6000-nat.c +++ b/gdb/rs6000-nat.c @@ -39,6 +39,7 @@ #include "rs6000-tdep.h" #include "exec.h" #include "gdb_stdint.h" +#include "observer.h" #include <sys/ptrace.h> #include <sys/reg.h> @@ -880,8 +881,8 @@ vmap_ldinfo (LdInfo *ldi) /* Announce new object files. Doing this after symbol relocation makes aix-thread.c's job easier. */ - if (deprecated_target_new_objfile_hook && vp->objfile) - deprecated_target_new_objfile_hook (vp->objfile); + if (vp->objfile) + observer_notify_new_objfile (vp->objfile); /* There may be more, so we don't break out of the loop. */ } @@ -1164,8 +1165,8 @@ xcoff_relocate_core (struct target_ops *target) vmap_symtab (vp); - if (deprecated_target_new_objfile_hook && vp != vmap && vp->objfile) - deprecated_target_new_objfile_hook (vp->objfile); + if (vp != vmap && vp->objfile) + observer_notify_new_objfile (vp->objfile); } while (LDI_NEXT (ldi, arch64) != 0); vmap_exec (); |