diff options
author | Andrew Cagney <cagney@redhat.com> | 2003-01-16 16:54:57 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2003-01-16 16:54:57 +0000 |
commit | 68dc7c0b8ddb51eae7be29d23c91b9ec60118215 (patch) | |
tree | 1dd8660276399743c141a4887bc8542b5a84e623 /gdb/dummy-frame.h | |
parent | 914fb38a53aa1549939e7555092a97b34978db50 (diff) | |
download | gdb-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.h')
-rw-r--r-- | gdb/dummy-frame.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gdb/dummy-frame.h b/gdb/dummy-frame.h index cfa2709142e..746e663ee0f 100644 --- a/gdb/dummy-frame.h +++ b/gdb/dummy-frame.h @@ -24,6 +24,7 @@ struct frame_info; struct regcache; +struct frame_id; /* GENERIC DUMMY FRAMES @@ -63,8 +64,9 @@ extern CORE_ADDR dummy_frame_pc_unwind (struct frame_info *frame, /* Assuming that FRAME is a dummy, return the ID of the calling frame (the frame that the dummy has the saved state of). */ -extern struct frame_id dummy_frame_id_unwind (struct frame_info *frame, - void **unwind_cache); +extern void dummy_frame_id_unwind (struct frame_info *frame, + void **unwind_cache, + struct frame_id *id); /* Does the PC fall in a dummy frame? |