The debugger / Debugger commands |
The up command selects and prints the function that called this one, or the function specified by the frame number in the call stack.
up [frames]
The up command moves towards the outermost frame, to frames that have existed longer. To print the function that called the current function, use the up command without an argument.
See stack frames for a brief description of frames.
(fgldb) up #1 main() at customain.4gl:14 14 CALL query_cust() (fgldb)