The ddown command moves the selected stack frame down one or more levels and prints the new frame’s number and function name.
Call stack movements are all relative, so using the ddown command effectively moves down in the call stack. (If up is in the direction of the
main() function, then down is back to where you were before you moved through stack frames.)
The command affects each thread in the focus. That is, if the current width is process, the ddown command acts on each thread in the process. You can specify any collection of processes and threads as the target set.
In addition, the ddown command modifies the current list location to be the current execution location for the new frame; this means that a
dlist command displays the code that surrounds this new location.
Moves down one level in the call stack. As a result, for example, dlist commands that follow refers to the procedure that invoked this one. The following example shows what prints after you enter this command: