Tutorials
Reference
Community
Inherits: Reference < Object
Category: Core
A synchronization Mutex.
A synchronization Mutex. Element used in multi-threadding. Basically a binary Semaphore. Guarantees that only one thread has this lock, can be used to protect a critical section.
Lock this Mutex, blocks until it is unlocked by the current owner.
Try locking this Mutex, does not block. Returns OK on success else ERR_BUSY.
Unlock this Mutex, leaving it to others threads.