diff options
Diffstat (limited to 'source/cSemaphore.h')
-rw-r--r-- | source/cSemaphore.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/source/cSemaphore.h b/source/cSemaphore.h new file mode 100644 index 000000000..86e473d11 --- /dev/null +++ b/source/cSemaphore.h @@ -0,0 +1,17 @@ +#pragma once
+
+class cSemaphore
+{
+public:
+ cSemaphore( unsigned int a_MaxCount, unsigned int a_InitialCount = 0 );
+ ~cSemaphore();
+
+ void Wait();
+ void Signal();
+private:
+ void* m_Handle; // HANDLE pointer + +#ifndef _WIN32 + bool m_bNamed; +#endif
+}; |