#include <nitro/os.h>void OS_DumpThreadCallTrace( OSThread* thread );
This displays function call trace information.
When you are using a thread system, it will display the information for a specified thread. In the case of NULL, it will be the current thread. It will not display if you are not using a thread system. In that case, use OS_DumpCallTrace().
The meanings of the display are the same as in OS_DumpCallTrace(). Refer to that for more information.
This function is for debugging. Therefore in the final ROM version (FINALROM) library it will not do anything.
thread |
Thread that has the information to display |
None
OS_InitCallTrace, OS_DumpCallTrace
04/13/2004 Initial Version