AuroraRuntime/Source/Threading/Primitives/AuMutex.NT.hpp
Reece d755a9d651 [*] Massive perf boost by removing atomic and
[*] Refactor ambiguous IWaitable::Lock(timeoutMs) to LockMS to prevent final using collisions
2023-04-03 08:21:44 +01:00

31 lines
713 B
C++

/***
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: AuMutex.NT.hpp
Date: 2021-6-12
Author: Reece
***/
#pragma once
namespace Aurora::Threading::Primitives
{
struct Mutex : IHyperWaitable
{
Mutex();
~Mutex();
bool HasOSHandle(AuMach &mach) override;
bool TryLock() override;
bool HasLockImplementation() override;
void SlowLock() override;
bool LockMS(AuUInt64 timeout) override;
bool LockNS(AuUInt64 timeout) override;
void Unlock() override;
private:
#if defined(AURORA_FORCE_SRW_LOCKS)
SRWLOCK atomicHolder_;
CONDITION_VARIABLE wakeup_;
#endif
};
}