summaryrefslogtreecommitdiffstats
path: root/src/OSSupport/Semaphore.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/OSSupport/Semaphore.h')
-rw-r--r--src/OSSupport/Semaphore.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/OSSupport/Semaphore.h b/src/OSSupport/Semaphore.h
deleted file mode 100644
index 57fa4bdb2..000000000
--- a/src/OSSupport/Semaphore.h
+++ /dev/null
@@ -1,17 +0,0 @@
-#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
-};