diff options
author | Thiago Jung Bauermann <bauerman@br.ibm.com> | 2009-03-30 19:54:33 +0000 |
---|---|---|
committer | Thiago Jung Bauermann <bauerman@br.ibm.com> | 2009-03-30 19:54:33 +0000 |
commit | f8f6f20b6e37e6d219940fcad58b1f66124d11c1 (patch) | |
tree | 3c8d23f5172b7534ff980396a0cc1a36447c839e /gdb/stack.h | |
parent | d460e92e4111484ffb8b6e898fde7adb619e4722 (diff) | |
download | gdb-f8f6f20b6e37e6d219940fcad58b1f66124d11c1.zip gdb-f8f6f20b6e37e6d219940fcad58b1f66124d11c1.tar.gz gdb-f8f6f20b6e37e6d219940fcad58b1f66124d11c1.tar.bz2 |
gdb/
Expose frames to Python.
* Makefile.in (SUBDIR_PYTHON_OBS): Add python-frame.o.
(SUBDIR_PYTHON_SRCS): Add python-frame.c.
(python-frame.o): New target.
* python/python-frame.c: New file.
* python/python-internal.h (gdbpy_frames, gdbpy_newest_frame,
gdbpy_frame_stop_reason_string, gdbpy_selected_frame,
gdbpy_initialize_frames): New prototypes.
* python/python.c (_initialize_python): Call gdbpy_initialize_frames.
(GdbMethods): Add `selected_frame' and `frame_stop_reason_string'
entries.
* stack.c (find_frame_funname): New function, factored out of
print_frame.
(print_frame): Call find_frame_funname.
* stack.h (find_frame_funname): Add prototype.
gdb/doc/
* gdb.texinfo (Frames in Python): New node.
(Python API): Update.
gdb/testsuite/
* gdb.python/python-frame.c: New file.
* gdb.python/python-frame.exp: New file.
Diffstat (limited to 'gdb/stack.h')
-rw-r--r-- | gdb/stack.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/stack.h b/gdb/stack.h index 973a57f..56b1d91 100644 --- a/gdb/stack.h +++ b/gdb/stack.h @@ -22,4 +22,9 @@ void select_frame_command (char *level_exp, int from_tty); +/* Attempt to obtain the FUNNAME and FUNLANG of the function corresponding + to FRAME. */ +void find_frame_funname (struct frame_info *frame, char **funname, + enum language *funlang); + #endif /* #ifndef STACK_H */ |