diff options
author | Daniel Jacobowitz <dan@debian.org> | 2009-06-28 00:05:13 +0000 |
---|---|---|
committer | Daniel Jacobowitz <dan@debian.org> | 2009-06-28 00:05:13 +0000 |
commit | 78a5fe1b7d107c963fae6dc5beaf01a83c1d0cac (patch) | |
tree | 1c0df0e5c446e6eb01c46e699721ce74ec4cff78 /gdb/obsd-tdep.c | |
parent | 8157a93a001cc1a64b29aa9d3089a641292278e6 (diff) | |
download | gdb-78a5fe1b7d107c963fae6dc5beaf01a83c1d0cac.tar.gz |
* 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); } |