summaryrefslogtreecommitdiff
path: root/gdb/dummy-frame.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2003-01-16 16:54:57 +0000
committerAndrew Cagney <cagney@redhat.com>2003-01-16 16:54:57 +0000
commit68dc7c0b8ddb51eae7be29d23c91b9ec60118215 (patch)
tree1dd8660276399743c141a4887bc8542b5a84e623 /gdb/dummy-frame.c
parent914fb38a53aa1549939e7555092a97b34978db50 (diff)
downloadgdb-68dc7c0b8ddb51eae7be29d23c91b9ec60118215.tar.gz
2003-01-16 Andrew Cagney <ac131313@redhat.com>
* frame.h (frame_id_unwind_ftype): Change type so that the frame's ID back using a parameter. * frame.c (frame_id_unwind): Update call. (frame_saved_regs_id_unwind): Update. * dummy-frame.c (dummy_frame_id_unwind): Update function. * dummy-frame.h (struct frame_id): Add opaque declaration. (dummy_frame_id_unwind): Update declaration.
Diffstat (limited to 'gdb/dummy-frame.c')
-rw-r--r--gdb/dummy-frame.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/gdb/dummy-frame.c b/gdb/dummy-frame.c
index fab10c08e02..99d388df92a 100644
--- a/gdb/dummy-frame.c
+++ b/gdb/dummy-frame.c
@@ -345,16 +345,17 @@ dummy_frame_pc_unwind (struct frame_info *frame,
}
-struct frame_id
-dummy_frame_id_unwind (struct frame_info *frame,
- void **cache)
+void
+dummy_frame_id_unwind (struct frame_info *frame, void **cache,
+ struct frame_id *id)
{
struct dummy_frame *dummy = cached_find_dummy_frame (frame, cache);
/* Oops! In a dummy-frame but can't find the stack dummy. Pretend
that the frame doesn't unwind. Should this function instead
return a has-no-caller indication? */
if (dummy == NULL)
- return null_frame_id;
- return dummy->id;
+ (*id) = null_frame_id;
+ else
+ (*id) = dummy->id;
}