mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-05-31 18:20:12 +08:00
2002-11-09 Andrew Cagney <ac131313@redhat.com>
* frame.c (get_prev_frame): Test prev_p to identify a previously unwound frame. Initialize prev_p. * frame.h (struct frame_info): Add field prev_p. Expand prev/next comment.
This commit is contained in:
@ -140,10 +140,11 @@ struct frame_info
|
||||
frame_register_unwind_ftype *register_unwind;
|
||||
void *register_unwind_cache;
|
||||
|
||||
/* Pointers to the next (down, inner) and previous (up, outer)
|
||||
frame_info's in the frame cache. */
|
||||
struct frame_info *next; /* down, inner */
|
||||
struct frame_info *prev; /* up, outer */
|
||||
/* Pointers to the next (down, inner, younger) and previous (up,
|
||||
outer, older) frame_info's in the frame cache. */
|
||||
struct frame_info *next; /* down, inner, younger */
|
||||
int prev_p;
|
||||
struct frame_info *prev; /* up, outer, older */
|
||||
};
|
||||
|
||||
/* Values for the source flag to be used in print_frame_info_base(). */
|
||||
|
Reference in New Issue
Block a user