summaryrefslogtreecommitdiff
path: root/gdb/glibc-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/glibc-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/glibc-tdep.c')
-rw-r--r--gdb/glibc-tdep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/glibc-tdep.c b/gdb/glibc-tdep.c
index 0ae303b78be..86046a091f3 100644
--- a/gdb/glibc-tdep.c
+++ b/gdb/glibc-tdep.c
@@ -97,7 +97,7 @@ glibc_skip_solib_resolver (struct gdbarch *gdbarch, CORE_ADDR pc)
fixup = lookup_minimal_symbol ("fixup", NULL, objfile);
if (fixup && SYMBOL_VALUE_ADDRESS (fixup) == pc)
- return frame_pc_unwind (get_current_frame ());
+ return frame_unwind_caller_pc (get_current_frame ());
}
return 0;