diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-03-31 19:40:28 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-03-31 19:40:28 +0000 |
commit | 1eaca9ec2ef73a31e80c79abcd0fe15ea7e5c655 (patch) | |
tree | a9db52048262908d3564e048dfad9789a133db29 /gdb/frame.h | |
parent | 5f99773e08ee99481a79a7b0f6d637dd95ae2bbe (diff) | |
download | gdb-1eaca9ec2ef73a31e80c79abcd0fe15ea7e5c655.tar.gz |
2004-03-31 Andrew Cagney <cagney@redhat.com>
* frame.h (frame_unwind_id): Declare.
* frame.c (frame_unwind_id): New function.
(get_prev_frame_1): New function.
(frame_debug_got_null_frame): New function.
(get_prev_frame): Use frame_debug_got_null_frame. Move unwind
code proper to prev_frame, update description.
* infrun.c (step_over_function): Use frame_unwind_id.
Diffstat (limited to 'gdb/frame.h')
-rw-r--r-- | gdb/frame.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/frame.h b/gdb/frame.h index 028167d4bde..3e38c6106b5 100644 --- a/gdb/frame.h +++ b/gdb/frame.h @@ -312,6 +312,7 @@ extern CORE_ADDR get_frame_base (struct frame_info *); frame after a frame cache flush (and other similar operations). If FI is NULL, return the null_frame_id. */ extern struct frame_id get_frame_id (struct frame_info *fi); +extern struct frame_id frame_unwind_id (struct frame_info *next_frame); /* Assuming that a frame is `normal', return its base-address, or 0 if the information isn't available. NOTE: This address is really only |