diff options
author | Daniel Jacobowitz <drow@false.org> | 2008-07-15 18:58:32 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2008-07-15 18:58:32 +0000 |
commit | 54af988d1e631ef9f44c83cc23cbc33bdcf12cf5 (patch) | |
tree | b67c0b548851cb0185d7ce778de4bcfb412f6019 /gdb/sol2-tdep.c | |
parent | ba2c6aec01a024592f7dce65f0628a93e39f4abe (diff) | |
download | gdb-54af988d1e631ef9f44c83cc23cbc33bdcf12cf5.zip gdb-54af988d1e631ef9f44c83cc23cbc33bdcf12cf5.tar.gz gdb-54af988d1e631ef9f44c83cc23cbc33bdcf12cf5.tar.bz2 |
* frame.c (frame_unwind_id): Renamed to ...
(frame_unwind_caller_id): ... this. All callers updated.
(frame_pc_unwind): Renamed to ...
(frame_unwind_caller_pc): ... this. All callers updated.
* frame.h: Document frame_unwind_caller_WHAT functions.
(frame_unwind_id): Renamed to ...
(frame_unwind_caller_id): ... this.
(frame_pc_unwind): Renamed to ...
(frame_unwind_caller_pc): ... this.
* hppa-tdep.c (hppa_find_unwind_entry_in_block): Correct comment.
* stack.c (parse_frame_specification_1): Do not rely on
frame_unwind_id.
Diffstat (limited to 'gdb/sol2-tdep.c')
-rw-r--r-- | gdb/sol2-tdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/sol2-tdep.c b/gdb/sol2-tdep.c index 9e93589..f5d3bc8 100644 --- a/gdb/sol2-tdep.c +++ b/gdb/sol2-tdep.c @@ -30,7 +30,7 @@ sol2_skip_solib_resolver (struct gdbarch *gdbarch, CORE_ADDR pc) msym = lookup_minimal_symbol("elf_bndr", NULL, NULL); if (msym && SYMBOL_VALUE_ADDRESS (msym) == pc) - return frame_pc_unwind (get_current_frame ()); + return frame_unwind_caller_pc (get_current_frame ()); return 0; } |