Logo ROOT   6.08/07
Reference Guide
TMutexImp.h
Go to the documentation of this file.
1 // @(#)root/thread:$Id$
2 // Author: Fons Rademakers 01/07/97
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2000, 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_TMutexImp
13 #define ROOT_TMutexImp
14 
15 
16 //////////////////////////////////////////////////////////////////////////
17 // //
18 // TMutexImp //
19 // //
20 // This class provides an abstract interface to the OS dependent mutex //
21 // classes (TPosixMutex and TWin32Mutex). //
22 // //
23 //////////////////////////////////////////////////////////////////////////
24 
25 #ifndef ROOT_Rtypes
26 #include "Rtypes.h"
27 #endif
28 #ifndef ROOT_TObject
29 #include "TObject.h"
30 #endif
31 
32 
33 class TMutexImp : public TObject {
34 
35 public:
36  TMutexImp() { }
37  virtual ~TMutexImp() { }
38 
39  virtual Int_t Lock() = 0;
40  virtual Int_t TryLock() = 0;
41  virtual Int_t UnLock() = 0;
42 
43  ClassDef(TMutexImp,0) // Mutex lock implementation ABC
44 };
45 
46 #endif
int Int_t
Definition: RtypesCore.h:41
TMutexImp()
Definition: TMutexImp.h:36
virtual Int_t Lock()=0
#define ClassDef(name, id)
Definition: Rtypes.h:254
virtual Int_t UnLock()=0
virtual Int_t TryLock()=0
virtual ~TMutexImp()
Definition: TMutexImp.h:37
Mother of all ROOT objects.
Definition: TObject.h:37