diff options
author | Daniel Jacobowitz <drow@false.org> | 2004-11-07 21:33:29 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2004-11-07 21:33:29 +0000 |
commit | 12b8a2cb8d184bd0ef8c5354f42e1c7bbc28b140 (patch) | |
tree | 72266ce3ca81bb138fc85d4f9866bf32f671caed /gdb/Makefile.in | |
parent | abbc6945577e04e769a5d62ec3dcff571a091730 (diff) | |
download | gdb-12b8a2cb8d184bd0ef8c5354f42e1c7bbc28b140.zip gdb-12b8a2cb8d184bd0ef8c5354f42e1c7bbc28b140.tar.gz gdb-12b8a2cb8d184bd0ef8c5354f42e1c7bbc28b140.tar.bz2 |
* Makefile.in (symfile-mem.o): Update dependencies.
* i386-linux-tdep.c (i386_linux_dwarf_signal_frame_p): New.
(i386_linux_init_abi): Call dwarf2_frame_set_signal_frame_p.
* inf-ptrace.c (inf_ptrace_attach): Call
observer_notify_inferior_created.
* inftarg.c (child_attach): Likewise.
* symfile-mem.c: Include "observer.h", "auxv.h", and "elf/common.h".
(symbol_file_add_from_memory): Take NAME argument. Use it for
the new BFD's filename.
(add_symbol_file_from_memory_command): Update call to
symbol_file_add_from_memory.
(struct symbol_file_add_from_memory_args, add_vsyscall_page)
(symbol_file_add_from_memory_wrapper): New.
(_initialize_symfile_mem): Register add_vsyscall_page as an
inferior_created observer.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 0b21a03..ec946c6 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -2620,7 +2620,8 @@ symfile.o: symfile.c $(defs_h) $(bfdlink_h) $(symtab_h) $(gdbtypes_h) \ $(hashtab_h) $(readline_h) $(gdb_assert_h) $(block_h) \ $(gdb_string_h) $(gdb_stat_h) symfile-mem.o: symfile-mem.c $(defs_h) $(symtab_h) $(gdbcore_h) \ - $(objfiles_h) $(gdbcmd_h) $(target_h) $(value_h) $(symfile_h) + $(objfiles_h) $(gdbcmd_h) $(target_h) $(value_h) $(symfile_h) \ + $(observer_h) $(auxv_h) $(elf_common_h) symmisc.o: symmisc.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(bfd_h) \ $(symfile_h) $(objfiles_h) $(breakpoint_h) $(command_h) \ $(gdb_obstack_h) $(language_h) $(bcache_h) $(block_h) $(gdb_regex_h) \ |