34 lines
853 B
C++
34 lines
853 B
C++
/***
|
|
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: AuSemaphore.NT.hpp
|
|
Date: 2021-6-12
|
|
Author: Reece
|
|
***/
|
|
#pragma once
|
|
|
|
#include "AuConditionMutex.Generic.hpp"
|
|
#include "AuConditionVariable.NT.hpp"
|
|
|
|
namespace Aurora::Threading::Primitives
|
|
{
|
|
struct SemaphoreImpl : ISemaphore
|
|
{
|
|
SemaphoreImpl(long iIntialValue = 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:
|
|
AuInt32 value_ {};
|
|
ConditionMutexImpl mutex;
|
|
ConditionVariableImpl var;
|
|
};
|
|
} |