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 [code]Mutex[/code], blocks until it is unlocked by the current owner.
Try locking this [code]Mutex[/code], does not block. Returns [OK] on success else [ERR_BUSY].
Unlock this [code]Mutex[/code], leaving it to others threads.