-
Notifications
You must be signed in to change notification settings - Fork 55
MTY_MutexTryLock
chrisd1100 edited this page Aug 25, 2022
·
1 revision
Try to acquire a lock on a mutex but fail if doing so would block.
bool MTY_MutexTryLock(
MTY_Mutex * ctx
);
ctx
(MTY_Mutex *
)
An MTY_Mutex
.
bool
If the lock was acquired, returns true
, otherwise false
.