#include <nitro/os.h>
void OS_InitMutex( OSMutex* mutex );This function initializes Mutex. mutex is used to synchronize threads. Operations are unstable when a mutex in use is initialized.
mutex |
Pointer to Mutex structure to be initialized |
None
OS_LockMutex, OS_UnlockMutex, OS_TryLockMutex
12/01/2003 Initial Version