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

39 lines
1.0 KiB
C++
Raw Normal View History

2021-06-27 21:25:29 +00:00
/***
Copyright (C) 2021-2024 J Reece Wilson (a/k/a "Reece"). All rights reserved.
2021-06-27 21:25:29 +00:00
File: AuSemaphore.NT.hpp
2021-06-27 21:25:29 +00:00
Date: 2021-6-12
Author: Reece
***/
#pragma once
2023-03-15 02:38:26 +00:00
#include "AuConditionMutex.Generic.hpp"
#include "AuConditionVariable.NT.hpp"
2021-06-27 21:25:29 +00:00
namespace Aurora::Threading::Primitives
{
struct SemaphoreImpl final : ISemaphore
2021-06-27 21:25:29 +00:00
{
SemaphoreImpl(AuUInt16 uIntialValue = 0);
~SemaphoreImpl();
2021-06-27 21:25:29 +00:00
bool HasOSHandle(AuMach &mach) override;
bool HasLockImplementation() override;
bool TryLock() override;
bool LockMS(AuUInt64 timeout) override;
bool LockNS(AuUInt64 timeout) override;
2023-08-24 12:55:31 +00:00
bool LockAbsNS(AuUInt64 qwTimeoutAbs) override;
2021-06-27 21:25:29 +00:00
void Lock() override;
void Unlock(AuUInt16 count) override;
2021-06-27 21:25:29 +00:00
void Unlock() override;
auline bool TryLockNoSpin();
auline bool TryLockHeavy();
2023-08-24 12:55:31 +00:00
auline AuUInt32 *GetSleepCounter();
2021-06-27 21:25:29 +00:00
private:
2023-09-02 03:55:43 +00:00
AuAUInt32 dwState_ {};
2023-08-21 16:34:24 +00:00
ConditionMutexInternal mutex;
ConditionVariableInternal var;
2021-06-27 21:25:29 +00:00
};
}