mutex is a mechanism for implementing protected access to shared resources. A thread that owns a Mutex means that only the thread that owns the Mutex can run the critical section protected by the mutex at the same time until the thread releases the mutex.
mutex is a mechanism for implementing protected access to shared resources.
A thread that owns a Mutex means that only the thread that owns the Mutex can run the critical section protected by the mutex at the same time until the thread releases the mutex.
It is the active thread among all the threads protected by this Mutex.
btw: Mutex is a mutex lock
This should mean that this thread called mutex.lock