Moved source to src
This commit is contained in:
17
src/OSSupport/Semaphore.h
Normal file
17
src/OSSupport/Semaphore.h
Normal file
@@ -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
|
||||
};
|
||||
Reference in New Issue
Block a user