OS_DumpThreadCallTrace


C Specification

#include <nitro/os.h>

void OS_DumpThreadCallTrace( OSThread* thread );

Description

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.

Arguments

thread Thread that has the information to display

Return Values

None

See Also

OS_InitCallTrace, OS_DumpCallTrace

Revision History

04/13/2004 Initial Version