From c967698b2de6a0c588dbf0cebc493dbb03989333 Mon Sep 17 00:00:00 2001 From: Cengiz Can Date: Tue, 2 Jun 2015 01:26:57 +0300 Subject: Skip unknown cflag for Apple clang & remove cSemaphore --- src/OSSupport/Semaphore.h | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 src/OSSupport/Semaphore.h (limited to 'src/OSSupport/Semaphore.h') 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 -}; -- cgit v1.2.3