#include <nitro/os.h>
u32 OS_GetThreadPriority( OSThread* thread );
This function returns the priority level of a thread, which range from 0 to 31. Threads that have a priority level of 0 have the highest priority.
thread |
Pointer to the thread structure to acquire priority levels |
The priority level of the specified thread.
OS_InitThread, OS_SetThreadPriority
02/26/2004 Initial Version