frame
The frame
command selects and prints a stack frame.
Syntax
frame [
number ]
- number is the stack frame number of the frame that you wish to select.
Usage
The frame
command allows you to move from one stack frame to another, and to
print the stack frame that you select. Each stack frame is associated with one call to one
function within the currently executing program. Without an argument, the current stack frame is
printed.
See stack frames for a brief discussion of frames.
Example
(fgldb) frame
#0 func1() at stack.4gl:6
6 FUNCTION func1(name,id)
(fgldb)