diff options
author | Mark Kettenis <kettenis@gnu.org> | 2005-08-21 10:47:48 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2005-08-21 10:47:48 +0000 |
commit | 0dbe1904b3c847fd11b7c448a82b54abb5c3fc05 (patch) | |
tree | 2fb9449b1eaaa41202e87f092175d9b2f823718f /gdb/Makefile.in | |
parent | 1a4d7a36100fd0eae22a8d12c83e5fd848547794 (diff) | |
download | gdb-0dbe1904b3c847fd11b7c448a82b54abb5c3fc05.zip gdb-0dbe1904b3c847fd11b7c448a82b54abb5c3fc05.tar.gz gdb-0dbe1904b3c847fd11b7c448a82b54abb5c3fc05.tar.bz2 |
* ppcobsd-tdep.c: Include "frame.h" and "frame-unwind.h". Don't
include "tramp-frame.h".
(ppcobsd_sigtramp_cache_init): Remove function.
(ppcobsd_sigtramp): Remove variable.
(ppcobsd_page_size, ppcobsd_sigreturn_offset): New variables.
(ppcobsd_sigtramp_p): New function.
(ppcobsd_sigtramp_frame_cache, ppcobsd_sigtramp_frame_this_id)
(ppcobsd_sigtramp_frame_prev_register): New functions.
(ppcobsd_sigtramp_frame_unwind): New variable.
(ppcobsd_sigtramp_frame_sniffer): New function.
(ppcobsd_init_abi): Adjust to register new sigtramp sniffer
instead of the old one.
* Makefile.in (ppcobsd-tdep.o): Update dependencies.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 0330b73..9a46f63 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -2382,8 +2382,8 @@ ppcobsd-nat.o: ppcobsd-nat.c $(defs_h) $(gdbcore_h) $(inferior_h) \ $(regcache_h) $(ppc_tdep_h) $(ppcobsd_tdep_h) $(inf_ptrace_h) \ $(bsd_kvm_h) ppcobsd-tdep.o: ppcobsd-tdep.c $(defs_h) $(arch_utils_h) $(floatformat_h) \ - $(osabi_h) $(regcache_h) $(regset_h) $(trad_frame_h) \ - $(tramp_frame_h) $(gdb_assert_h) $(gdb_string_h) $(ppc_tdep_h) \ + $(frame_h) $(frame_unwind_h) $(osabi_h) $(regcache_h) $(regset_h) \ + $(trad_frame_h) $(gdb_assert_h) $(gdb_string_h) $(ppc_tdep_h) \ $(ppcobsd_tdep_h) $(solib_svr4_h) ppc-sysv-tdep.o: ppc-sysv-tdep.c $(defs_h) $(gdbcore_h) $(inferior_h) \ $(regcache_h) $(value_h) $(gdb_string_h) $(gdb_assert_h) \ |