#include <nitro/os.h>
BOOL OS_TryLockMutex( OSMutex* mutex );
Attempts to lock Mutex
If lock fails, FALSE is returned. If lock succeeds, the procedure for OS_LockMutex() is performed.
mutex |
Pointer to the Mutex structure |
If Mutex is successfully locked, TRUE is returned. If lock fails, FALSE is returned.
OS_InitMutex, OS_LockMutex, OS_UnlockMutex
12/01/2003 Initial Version