summaryrefslogtreecommitdiffstats
path: root/src/OSSupport/Semaphore.h
diff options
context:
space:
mode:
authorCengiz Can <cengizc@gmail.com>2015-06-02 00:26:57 +0200
committerCengiz Can <cengizc@gmail.com>2015-06-04 10:48:56 +0200
commitc967698b2de6a0c588dbf0cebc493dbb03989333 (patch)
tree90ed066862c081299e02b173b9de99643e7e5732 /src/OSSupport/Semaphore.h
parentMerge pull request #2202 from mc-server/CmakeCleanup (diff)
downloadcuberite-c967698b2de6a0c588dbf0cebc493dbb03989333.tar
cuberite-c967698b2de6a0c588dbf0cebc493dbb03989333.tar.gz
cuberite-c967698b2de6a0c588dbf0cebc493dbb03989333.tar.bz2
cuberite-c967698b2de6a0c588dbf0cebc493dbb03989333.tar.lz
cuberite-c967698b2de6a0c588dbf0cebc493dbb03989333.tar.xz
cuberite-c967698b2de6a0c588dbf0cebc493dbb03989333.tar.zst
cuberite-c967698b2de6a0c588dbf0cebc493dbb03989333.zip
Diffstat (limited to '')
-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
-};