Next: GDB/MI Thread Information, Previous: GDB/MI Breakpoint Information, Up: GDB/MI Output Records [Contents][Index]
Response from many MI commands includes an information about stack frame. This information is a tuple that may have the following fields:
levelThe level of the stack frame. The innermost frame has the level of zero. This field is always present.
funcThe name of the function corresponding to the frame. This field may be absent if GDB is unable to determine the function name.
addrThe code address for the frame. This field is always present.
fileThe name of the source files that correspond to the frame’s code address. This field may be absent.
lineThe source line corresponding to the frames’ code address. This field may be absent.
fromThe name of the binary file (either executable or shared library) the corresponds to the frame’s code address. This field may be absent.