diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-05-01 15:10:15 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-05-01 15:10:15 +0000 |
commit | ebffdeb467c345ce7ca8405eab5276740f1be6a3 (patch) | |
tree | fe12f759a23f4d716e192f3c9f2b68f4574b950b /gdb/m68k-tdep.h | |
parent | 804d245a0b540370315706dee35bc84fc9d18f0c (diff) | |
download | gdb-ebffdeb467c345ce7ca8405eab5276740f1be6a3.tar.gz |
2004-05-01 Andrew Cagney <cagney@redhat.com>
* Makefile.in (m68klinux-nat.o): Update dependencies.
* m68klinux-tdep.c: Include "trad-frame.h" and "frame-unwind.h".
(m68k_linux_sigtramp_frame_cache)
(m68k_linux_sigtramp_frame_this_id)
(m68k_linux_sigtramp_frame_prev_register)
(m68k_linux_sigtramp_frame_unwind)
(m68k_linux_sigtramp_frame_sniffer)
(struct m68k_linux_sigtramp_info, m68k_linux_init_abi): Code from
m68k-tdep.h and m68k-tdep.c, add "linux" to function and variable
names, use trad-frame.h.
* m68k-tdep.h (struct gdbarch_tdep): Delete get_sigtramp_info.
(struct m68k_sigtramp_info): Delete.
* m68k-tdep.c (m68k_sigtramp_frame_cache)
(m68k_sigtramp_frame_this_id, m68k_sigtramp_frame_prev_register)
(m68k_sigtramp_frame_unwind, m68k_sigtramp_frame_sniffer)
(m68k_gdbarch_init): Delete all the sigtramp code, moved to
"m68klinux-tdep.c".
Diffstat (limited to 'gdb/m68k-tdep.h')
-rw-r--r-- | gdb/m68k-tdep.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/gdb/m68k-tdep.h b/gdb/m68k-tdep.h index bf00cf05a1f..be28d886391 100644 --- a/gdb/m68k-tdep.h +++ b/gdb/m68k-tdep.h @@ -49,15 +49,6 @@ enum m68k_regnum /* Size of the largest register. */ #define M68K_MAX_REGISTER_SIZE 12 -struct m68k_sigtramp_info -{ - /* Address of sigcontext. */ - CORE_ADDR sigcontext_addr; - - /* Offset of registers in `struct sigcontext'. */ - int *sc_reg_offset; -}; - /* Convention for returning structures. */ enum struct_return @@ -76,9 +67,6 @@ struct gdbarch_tdep /* The size of each entry in the jump buffer. */ size_t jb_elt_size; - /* Get info about sigtramp. */ - struct m68k_sigtramp_info (*get_sigtramp_info) (struct frame_info *); - /* Convention for returning structures. */ enum struct_return struct_return; }; |