diff options
author | Mark Kettenis <kettenis@gnu.org> | 2005-02-16 02:17:02 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2005-02-16 02:17:02 +0000 |
commit | 1c58eb1be01624de240d932f91279f8236c281fd (patch) | |
tree | 8f97ca45b8077480c52611e776e441e430535f29 /gdb/amd64-linux-tdep.c | |
parent | 517514cd18558c4dec34cca48d2a0471396139bc (diff) | |
download | gdb-1c58eb1be01624de240d932f91279f8236c281fd.tar.gz |
* amd64-linux-tdep.c: Update copyright year.
(amd64_linux_sigtramp_start): Change argument to `struct
frame_info *'. Use safe_frame_unwind_memory instead of
deprecated_read_memory_nobpt.
(amd64_linux_sigtramp_p): Adjust call to
amd64_linux_sigtramp_start.
Diffstat (limited to 'gdb/amd64-linux-tdep.c')
-rw-r--r-- | gdb/amd64-linux-tdep.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gdb/amd64-linux-tdep.c b/gdb/amd64-linux-tdep.c index 2bca2e02f8f..57eadf20b81 100644 --- a/gdb/amd64-linux-tdep.c +++ b/gdb/amd64-linux-tdep.c @@ -1,6 +1,6 @@ /* Target-dependent code for GNU/Linux x86-64. - Copyright 2001, 2003, 2004 Free Software Foundation, Inc. + Copyright 2001, 2003, 2004, 2005 Free Software Foundation, Inc. Contributed by Jiri Smid, SuSE Labs. This file is part of GDB. @@ -98,7 +98,7 @@ amd64_linux_sigtramp_start (struct frame_info *next_frame) PC is not at the start of the instruction sequence, there will be a few trailing readable bytes on the stack. */ - if (!safe_frame_unwind_memory (next_frame, pc, buf, LINUX_SIGTRAMP_LEN)) + if (!safe_frame_unwind_memory (next_frame, pc, buf, sizeof buf)) return 0; if (buf[0] != LINUX_SIGTRAMP_INSN0) @@ -107,8 +107,7 @@ amd64_linux_sigtramp_start (struct frame_info *next_frame) return 0; pc -= LINUX_SIGTRAMP_OFFSET1; - - if (!safe_frame_unwind_memory (next_frame, pc, buf, LINUX_SIGTRAMP_LEN)) + if (!safe_frame_unwind_memory (next_frame, pc, buf, sizeof buf)) return 0; } |