diff options
author | Mark Kettenis <kettenis@gnu.org> | 2005-08-13 22:31:30 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2005-08-13 22:31:30 +0000 |
commit | 4ea4748e62dd8ef4479991f8f6894d1ddfbb977f (patch) | |
tree | 0ab1ef249d1623d5cca25a4994906c365e0d4389 /gdb/tramp-frame.h | |
parent | e4ef629de7c4321fdcc8fe5de656d05c325e1312 (diff) | |
download | gdb-4ea4748e62dd8ef4479991f8f6894d1ddfbb977f.zip gdb-4ea4748e62dd8ef4479991f8f6894d1ddfbb977f.tar.gz gdb-4ea4748e62dd8ef4479991f8f6894d1ddfbb977f.tar.bz2 |
* tramp-frame.h (struct tramp_frame): Allow for 16 instructions
instead of 8.
* m68kbsd-tdep.c: Include "frame.h", "trad-frame.h" and
"tramp-frame.h".
(m68kobsd_sigtramp_cache_init): New function.
(m68kbsd_aout_init_abi): Prepend m68kobsd_sigtramp unwinder.
Diffstat (limited to 'gdb/tramp-frame.h')
-rw-r--r-- | gdb/tramp-frame.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/tramp-frame.h b/gdb/tramp-frame.h index 9244701..58f175b 100644 --- a/gdb/tramp-frame.h +++ b/gdb/tramp-frame.h @@ -1,6 +1,6 @@ -/* Signal trampoline unwinder, for GDB the GNU Debugger. +/* Signal trampoline unwinder. - Copyright 2004 Free Software Foundation, Inc. + Copyright 2004, 2005 Free Software Foundation, Inc. This file is part of GDB. @@ -64,7 +64,7 @@ struct tramp_frame { ULONGEST bytes; ULONGEST mask; - } insn[8]; + } insn[16]; /* Initialize a trad-frame cache corresponding to the tramp-frame. FUNC is the address of the instruction TRAMP[0] in memory. */ void (*init) (const struct tramp_frame *self, |