Lines Matching full:mutex
40 // class Mutex, class Lock
42 // Class Mutex is a wrapper for a system-dependent mutual exclusion
43 // mechanism. Actual locking and unlocking of a Mutex object must
48 // the mutex; destroying the Lock unlocks the mutex.
55 // Mutex mtx; // Create a Mutex object that is visible
63 // Lock lock (mtx); // Lock constructor locks the mutex
65 // } // leaving the block unlocks the mutex
86 class Mutex
90 Mutex ();
91 virtual ~Mutex ();
104 void operator = (const Mutex& M); // not implemented
105 Mutex (const Mutex& M); // not implemented
115 Lock (const Mutex& m, bool autoLock = true):
151 const Mutex & _mutex;