大家讲道理2017-04-17 13:50:09
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.
怪我咯2017-04-17 13:50:09
It is the active thread among all the threads protected by this Mutex.
btw: Mutex is a mutex lock