00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00051 #ifndef __vtkMutexVariable_h
00052 #define __vtkMutexVariable_h
00053
00054
00055 #include "vtkObject.h"
00056
00057
00058
00059 #ifdef VTK_USE_SPROC
00060 #include <abi_mutex.h>
00061 typedef abilock_t vtkMutexType;
00062 #endif
00063
00064 #ifdef VTK_USE_PTHREADS
00065 #include <pthread.h>
00066 typedef pthread_mutex_t vtkMutexType;
00067 #endif
00068
00069 #ifdef VTK_USE_WIN32_THREADS
00070 #include <winbase.h>
00071 typedef HANDLE vtkMutexType;
00072 #endif
00073
00074 #ifndef VTK_USE_SPROC
00075 #ifndef VTK_USE_PTHREADS
00076 #ifndef VTK_USE_WIN32_THREADS
00077 typedef int vtkMutexType;
00078 #endif
00079 #endif
00080 #endif
00081
00082
00083 class VTK_COMMON_EXPORT vtkSimpleMutexLock
00084 {
00085 public:
00086
00087 vtkSimpleMutexLock();
00088 virtual ~vtkSimpleMutexLock();
00089
00090 static vtkSimpleMutexLock *New();
00091
00092 virtual const char *GetClassName() {return "vtkSimpleMutexLock";};
00093 virtual int IsA(const char *name);
00094 static vtkSimpleMutexLock *SafeDownCast(vtkSimpleMutexLock *o);
00095
00096 void Delete() {delete this;}
00097
00099 void Lock( void );
00100
00102 void Unlock( void );
00103
00104 protected:
00105 vtkMutexType MutexLock;
00106 };
00107
00108
00109
00110 class VTK_COMMON_EXPORT vtkMutexLock : public vtkObject
00111 {
00112 public:
00113 static vtkMutexLock *New();
00114
00115 vtkTypeMacro(vtkMutexLock,vtkObject);
00116 void PrintSelf(ostream& os, vtkIndent indent);
00117
00119 void Lock( void );
00120
00122 void Unlock( void );
00123
00124 protected:
00125 vtkSimpleMutexLock SimpleMutexLock;
00126 vtkMutexLock() {};
00127 private:
00128 vtkMutexLock(const vtkMutexLock&);
00129 void operator=(const vtkMutexLock&);
00130 };
00131
00132
00133 inline void vtkMutexLock::Lock( void )
00134 {
00135 this->SimpleMutexLock.Lock();
00136 }
00137
00138 inline void vtkMutexLock::Unlock( void )
00139 {
00140 this->SimpleMutexLock.Unlock();
00141 }
00142
00143 #endif