diff options
author | 2009-06-28 00:05:14 +0000 | |
---|---|---|
committer | 2009-06-28 00:05:14 +0000 | |
commit | c7ce8faacb57cd10f919caff6c5018c4526e752e (patch) | |
tree | 7faa96895297e983653ca7d7a842608504c71631 /gdb/obsd-tdep.c | |
parent | *** empty log message *** (diff) | |
download | binutils-gdb-c7ce8faacb57cd10f919caff6c5018c4526e752e.tar.gz binutils-gdb-c7ce8faacb57cd10f919caff6c5018c4526e752e.tar.bz2 binutils-gdb-c7ce8faacb57cd10f919caff6c5018c4526e752e.zip |
* 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/obsd-tdep.c')
-rw-r--r-- | gdb/obsd-tdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/obsd-tdep.c b/gdb/obsd-tdep.c index 2d9e7edeb0b..781193d1b02 100644 --- a/gdb/obsd-tdep.c +++ b/gdb/obsd-tdep.c @@ -30,7 +30,7 @@ obsd_skip_solib_resolver (struct gdbarch *gdbarch, CORE_ADDR pc) msym = lookup_minimal_symbol("_dl_bind", NULL, NULL); if (msym && SYMBOL_VALUE_ADDRESS (msym) == pc) - return frame_pc_unwind (get_current_frame ()); + return frame_unwind_caller_pc (get_current_frame ()); else return find_solib_trampoline_target (get_current_frame (), pc); } |