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.
This commit is contained in:
parent
57126e4a45
commit
ccfc3d6e06
5 changed files with 39 additions and 4 deletions
|
@ -581,7 +581,9 @@ gdbpy_initialize_frames (void)
|
|||
type's dictionary. That seems too messy. */
|
||||
PyModule_AddIntConstant (gdb_module, "NORMAL_FRAME", NORMAL_FRAME);
|
||||
PyModule_AddIntConstant (gdb_module, "DUMMY_FRAME", DUMMY_FRAME);
|
||||
PyModule_AddIntConstant (gdb_module, "INLINE_FRAME", INLINE_FRAME);
|
||||
PyModule_AddIntConstant (gdb_module, "SIGTRAMP_FRAME", SIGTRAMP_FRAME);
|
||||
PyModule_AddIntConstant (gdb_module, "ARCH_FRAME", ARCH_FRAME);
|
||||
PyModule_AddIntConstant (gdb_module, "SENTINEL_FRAME", SENTINEL_FRAME);
|
||||
PyModule_AddIntConstant (gdb_module,
|
||||
"FRAME_UNWIND_NO_REASON", UNWIND_NO_REASON);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue