#include <nitro/os.h> void OS_InitThreadQueue( OSThreadQueue* queue );
Initializes the thread queues used by other thread functions, including OS_SleepThread
and OS_WakeupThread
Multiple threads can be registered in the queue and, by doing so, multiple threads can be started at the same time using OS_WakeupThread().
queue |
Pointer to the thread queue to be initialized |
None
OS_CreateThread, OS_WakeupThread
12/01/2003 Initial Version