30 class TMutex :
public TVirtualMutex {
32 friend class TCondition;
38 TMutex(
const TMutex&);
39 TMutex& operator=(
const TMutex&);
42 TMutex(Bool_t recursive = kFALSE);
43 virtual ~TMutex() {
delete fMutexImp; }
51 void lock() { TMutex::Lock(); }
52 void unlock() { TMutex::UnLock(); }
54 TVirtualMutex *Factory(Bool_t recursive = kFALSE);