Go to the documentation of this file.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 #ifndef MUTEX_CLASS
00027 #define MUTEX_CLASS
00028
00029 #ifndef WINDOWS
00030 #if defined(WIN32) || defined(WIN64)
00031 #define WINDOWS
00032 #endif
00033 #endif
00034
00035 #ifndef WINDOWS
00036 #include <pthread.h>
00037 #endif
00038 #include <blort/ThreadObject/Thread.h>
00039
00040 class CMutexClass
00041 {
00042 private:
00043 #ifdef WINDOWS
00044 HANDLE m_mutex;
00045 #else
00046 pthread_mutex_t m_mutex;
00047 #endif
00048 ThreadId_t m_owner;
00049 public:
00050 BOOL m_bCreated;
00051 void Lock();
00052 void Unlock();
00053 void Wait();
00054 CMutexClass(void);
00055 ~CMutexClass(void);
00056 };
00057 #endif
00058
blort
Author(s): Michael Zillich,
Thomas Mörwald,
Johann Prankl,
Andreas Richtsfeld,
Bence Magyar (ROS version)
autogenerated on Thu Jan 2 2014 11:38:25