From b27d958ef69eef2dece490af88a6062ae4e8b5a5 Mon Sep 17 00:00:00 2001 From: Thiago Jung Bauermann Date: Mon, 30 Mar 2009 19:54:19 +0000 Subject: 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. --- gdb/stack.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'gdb/stack.h') diff --git a/gdb/stack.h b/gdb/stack.h index 973a57f91b2..56b1d91b5e5 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 */ -- cgit v1.2.1