OS_InitThreadQueue

C Specification

#include <nitro/os.h>
void OS_InitThreadQueue( OSThreadQueue* queue );

Arguments

queue Pointer to the thread queue to be initialized

Return Values

None.

Description

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().

See Also

OS_CreateThread, OS_WakeupThread

Revision History

12/01/2003 Initial Version