AuroraRuntime/Source/Threading/Primitives/AuSemaphore.Linux.hpp

29 lines
710 B
C++
Raw Normal View History

/***
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: AuSemaphore.Linux.hpp
Date: 2022-12-28
Author: Reece
***/
#pragma once
namespace Aurora::Threading::Primitives
{
struct SemaphoreImpl : ISemaphore
{
SemaphoreImpl(long intialValue = 0);
~SemaphoreImpl();
bool HasOSHandle(AuMach &mach) override;
bool HasLockImplementation() override;
bool TryLock() override;
bool LockMS(AuUInt64 timeout) override;
bool LockNS(AuUInt64 timeout) override;
void Lock() override;
void Unlock(long count) override;
void Unlock() override;
private:
AuUInt32 value_ {};
};
}