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

66 lines
1.3 KiB
C++
Raw Normal View History

/***
Copyright (C) 2023 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: AuConditionMutex.Linux.hpp
Date: 2023-8-11
Author: Reece
***/
#pragma once
#include "AuIConditionMutexEx.hpp"
namespace Aurora::Threading::Primitives
{
2023-08-21 18:17:05 +00:00
#pragma pack(push)
#pragma pack(4)
struct LinuxConditionMutex final
{
LinuxConditionMutex();
~LinuxConditionMutex();
2023-08-21 18:17:05 +00:00
bool TryLock();
void Lock();
void Unlock();
AuUInt GetOSHandle();
bool LockMS(AuUInt64 timeout);
bool LockNS(AuUInt64 timeout);
bool LockAbsMS(AuUInt64 timeout);
bool LockAbsNS(AuUInt64 timeout);
2023-08-19 17:33:54 +00:00
auline bool TryLockNoSpin();
auline bool TryLockHeavy();
2023-08-21 18:17:05 +00:00
private:
AuUInt32 uState_ {};
AuUInt32 uSleeping_ {};
};
2023-08-21 18:17:05 +00:00
#pragma pack(pop)
2023-08-21 18:17:05 +00:00
using ConditionMutexInternal = LinuxConditionMutex;
struct ConditionMutexImpl final : IConditionMutexEx
{
auline bool TryLock()
{
return mutex.TryLock();
}
auline void Lock()
{
mutex.Unlock();
}
auline void Unlock()
{
mutex.Unlock();
}
inline AuUInt GetOSHandle()
{
return mutex.GetOSHandle();
}
ConditionMutexInternal mutex;
};
}