OS_DumpThreadCallTrace

C Specification

#include <nitro/os.h>

void OS_DumpThreadCallTrace( const OSThread* thread );

Arguments

thread Thread that has the information to display

Return Values

None.

Description

This function 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 display meanings are the same as those for OS_DumpCallTrace(). Refer to the function description for more information.

If this function is compiled for debugging, it will function properly. However, if compiled for the final ROM version (FINALROM) library, it will not do anything.

See Also

OS_InitCallTrace, OS_DumpCallTrace

Revision History

09/06/2005 Added const to the argument of the OSThread* model.
04/13/2004 Initial version.