diff options
author | Tom Tromey <tromey@redhat.com> | 2011-01-06 18:34:16 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2011-01-06 18:34:16 +0000 |
commit | ccfc3d6e06d5b9d2ebd8b8e4239f1313e33f40ac (patch) | |
tree | fcf41155ad132bb1f1b11f09be91406aacbb1114 /gdb/frame.h | |
parent | 57126e4a45e3000ea9aa429da6a4ee4646606a3a (diff) | |
download | gdb-ccfc3d6e06d5b9d2ebd8b8e4239f1313e33f40ac.zip gdb-ccfc3d6e06d5b9d2ebd8b8e4239f1313e33f40ac.tar.gz gdb-ccfc3d6e06d5b9d2ebd8b8e4239f1313e33f40ac.tar.bz2 |
gdb
* frame.h (enum frame_type) <INLINE_FRAME>: Fix comment.
* python/py-frame.c (gdbpy_initialize_frames): Add INLINE_FRAME
and ARCH_FRAME.
gdb/doc
PR python/12133:
* gdb.texinfo (Frames In Python): Document various frame
constants.
Diffstat (limited to 'gdb/frame.h')
-rw-r--r-- | gdb/frame.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/frame.h b/gdb/frame.h index 8549e43..b361104 100644 --- a/gdb/frame.h +++ b/gdb/frame.h @@ -204,7 +204,7 @@ enum frame_type call. */ DUMMY_FRAME, /* A frame representing an inlined function, associated with an - upcoming (next, inner, younger) NORMAL_FRAME. */ + upcoming (prev, outer, older) NORMAL_FRAME. */ INLINE_FRAME, /* In a signal handler, various OSs handle this in various ways. The main thing is that the frame may be far from normal. */ |