ROOT  6.06/09
Reference Guide
TWin32Mutex.h
Go to the documentation of this file.
1 // @(#)root/thread:$Id$
2 // Author: Bertrand Bellenot 20/10/2004
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2004, Rene Brun and Fons Rademakers. *
6  * All rights reserved. *
7  * *
8  * For the licensing terms see $ROOTSYS/LICENSE. *
9  * For the list of contributors see $ROOTSYS/README/CREDITS. *
10  *************************************************************************/
11 
12 #ifndef ROOT_TWin32Mutex
13 #define ROOT_TWin32Mutex
14 
15 
16 //////////////////////////////////////////////////////////////////////////
17 // //
18 // TWin32Mutex //
19 // //
20 // This class provides an interface to the Win32 mutex routines. //
21 // //
22 //////////////////////////////////////////////////////////////////////////
23 
24 #ifndef ROOT_TMutexImp
25 #include "TMutexImp.h"
26 #endif
27 
28 #include "Windows4Root.h"
29 
30 #ifdef __CINT__
31 struct CRITICAL_SECTION;
32 #endif
33 
34 class TWin32Mutex : public TMutexImp {
35 
36 friend class TWin32Condition;
37 
38 private:
39  CRITICAL_SECTION fCritSect;
40 
41 public:
42  TWin32Mutex(Bool_t recursive=kFALSE);
43  virtual ~TWin32Mutex();
44 
45  Int_t Lock();
46  Int_t UnLock();
47  Int_t TryLock();
48 
49  ClassDef(TWin32Mutex,0) // Win32 mutex lock
50 };
51 
52 #endif
Int_t UnLock()
Unlock the mutex.
Definition: TWin32Mutex.cxx:67
Int_t Lock()
Lock the mutex.
Definition: TWin32Mutex.cxx:48
int Int_t
Definition: RtypesCore.h:41
bool Bool_t
Definition: RtypesCore.h:59
const Bool_t kFALSE
Definition: Rtypes.h:92
#define ClassDef(name, id)
Definition: Rtypes.h:254
CRITICAL_SECTION fCritSect
Definition: TWin32Mutex.h:39
TWin32Mutex(Bool_t recursive=kFALSE)
Int_t TryLock()
Try locking the mutex. Returns 0 if mutex can be locked.
Definition: TWin32Mutex.cxx:57
virtual ~TWin32Mutex()
TMutex dtor.
Definition: TWin32Mutex.cxx:40