AuroraRuntime/Source/Threading/Primitives/AuSemaphore.Linux.hpp
Jamie Reece Wilson 62b6fa20f8 [*] Update the copyright header of most of the primitives
[*] Fix generic mutex abs yield always returning true
2024-01-29 14:48:04 +00:00

34 lines
939 B
C++

/***
Copyright (C) 2022-2024 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 final : ISemaphore
{
SemaphoreImpl(AuUInt16 intialValue = 0);
~SemaphoreImpl();
bool HasOSHandle(AuMach &mach) override;
bool HasLockImplementation() override;
bool TryLock() override;
bool LockMS(AuUInt64 timeout) override;
bool LockNS(AuUInt64 timeout) override;
bool LockAbsMS(AuUInt64 timeout) override;
bool LockAbsNS(AuUInt64 timeout) override;
void Lock() override;
void Unlock(AuUInt16 count) override;
void Unlock() override;
auline bool TryLockNoSpin();
auline bool TryLockHeavy();
private:
AuUInt32 dwState_ {};
AuUInt32 dwSleeping_ {};
};
}