summaryrefslogtreecommitdiff
path: root/gdb/obsd-tdep.c
diff options
context:
space:
mode:
authorDaniel Jacobowitz <dan@debian.org>2008-07-15 18:58:32 +0000
committerDaniel Jacobowitz <dan@debian.org>2008-07-15 18:58:32 +0000
commit39cfa69e72d29101a012f7d3bc23b2da77c3cbcf (patch)
tree7c438aadbaf900e39330b88fff076631dee6f9ea /gdb/obsd-tdep.c
parentd09ae1452d5fc874ac7b275a7663a462d59ba0e8 (diff)
downloadgdb-39cfa69e72d29101a012f7d3bc23b2da77c3cbcf.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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/obsd-tdep.c b/gdb/obsd-tdep.c
index cb941fbc8aa..7667bac48a2 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);
}