|
|
To trace the path of all active functions, use the $c command. The command lists the names of all functions that have been called but have not yet returned control, as well as the address from which each function was called, and the arguments passed to it.
For example, the following command displays a backtrace of the C language functions called:
$cBy default, the $c command displays all calls. To display a specific amount, supply a count of the number of calls required. For example, the following command displays up to 25 calls in the current call path:
,25$c