AuroraRuntime/Source/Threading/Primitives/Semaphore.Win32.hpp
2021-06-27 22:25:29 +01:00

29 lines
656 B
C++

/***
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: Semaphore.Win32.hpp
Date: 2021-6-12
Author: Reece
***/
#pragma once
namespace Aurora::Threading::Primitives
{
class Semaphore : public ISemaphore
{
public:
Semaphore(long intialValue);
~Semaphore();
bool HasOSHandle(AuMach &mach) override;
bool HasLockImplementation() override;
bool TryLock() override;
bool Lock(AuUInt64 timeout) override;
void Lock() override;
void Unlock(long count) override;
void Unlock() override;
private:
HANDLE value_{};
};
}