#include <nitro/os.h>
void OS_DumpThreadCallTrace( const OSThread* thread );
thread | Thread that has the information to display |
None.
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.
If an accurate display of all information takes priority over speed, as it does in this function, we recommend temporarily setting the display to blocking mode. See OS_SetPrintBlockingMode
for details.
OS_InitCallTrace
OS_DumpCallTrace
OS_SetPrintBlockingMode
2009/07/27 Added Display Mode.
2005/09/06 Added the const argument to the OSThread*
type.
2004/04/13 Initial version.
CONFIDENTIAL