Oracle® Solaris Studio 12.4: Debugging a Program With dbx

Exit Print View

Updated: January 2015
 
 

Stepping Into a Specific or Last Function

To step into a function called from the current source code line, use the step to command.

(dbx) step to function 

To step into the last function called:

(dbx) step to

For the following two examples, using step to by itself will step into foo:

foo(bar(baz(4)));
baz()->bar()-> foo()