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