diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-05-01 19:35:22 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-05-01 19:35:22 +0000 |
commit | 0e100dab2eb07e9fc9ca155f87172d02439b64cb (patch) | |
tree | c7d780fe2636e683e8ee64f718b2f51b57d7c635 /gdb/frame.h | |
parent | 55699d593f51fb72de21a8860f53b5b5a11207bd (diff) | |
download | gdb-0e100dab2eb07e9fc9ca155f87172d02439b64cb.zip gdb-0e100dab2eb07e9fc9ca155f87172d02439b64cb.tar.gz gdb-0e100dab2eb07e9fc9ca155f87172d02439b64cb.tar.bz2 |
2004-05-01 Andrew Cagney <cagney@redhat.com>
* frame.c (create_sentinel_frame): Set type to SENTINEL_FRAME.
* dummy-frame.c (dummy_frame_this_id): Use get_frame_type, instead
of frame_relative_level.
* sentinel-frame.c (sentinel_frame_unwinder): Set unwinder's type
to SENTINEL_FRAME.
* frame.h (enum frame_type): Add SENTINEL_FRAME.
* s390-tdep.c (s390_prologue_frame_unwind_cache): Delete calls to
frame_relative_level.
Diffstat (limited to 'gdb/frame.h')
-rw-r--r-- | gdb/frame.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gdb/frame.h b/gdb/frame.h index 617d3a1..a6e84a6 100644 --- a/gdb/frame.h +++ b/gdb/frame.h @@ -355,7 +355,10 @@ enum frame_type DUMMY_FRAME, /* In a signal handler, various OSs handle this in various ways. The main thing is that the frame may be far from normal. */ - SIGTRAMP_FRAME + SIGTRAMP_FRAME, + /* Sentinel or registers frame. This frame obtains register values + direct from the inferior's registers. */ + SENTINEL_FRAME }; extern enum frame_type get_frame_type (struct frame_info *); |