OSSignalCond

C Specification

#include <revolution/os.h>
void OSSignalCond (OSCond* cond);

Arguments

cond Pointer to condition variable.

Return Values

None.

Description

Unblocks all the threads waiting on the specified condition variable. The threads will run according to the priority order.

See the OSWaitCond function for an example program.

See Also

Thread Functions, Thread Synchronization Functions, OSInitCond, OSInitMutex, OSLockMutex, OSTryLockMutex, OSUnlockMutex(), OSWaitCond

Revision History

03/01/2006 Initial version.