28 lines
630 B
C++
Executable File
28 lines
630 B
C++
Executable File
/***
|
|
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: AuMutex.Linux.hpp
|
|
Date: 2022-12-28
|
|
Author: Reece
|
|
***/
|
|
#pragma once
|
|
|
|
namespace Aurora::Threading::Primitives
|
|
{
|
|
struct MutexImpl : IWaitable
|
|
{
|
|
MutexImpl();
|
|
~MutexImpl();
|
|
|
|
bool HasOSHandle(AuMach &mach) override;
|
|
bool TryLock() override;
|
|
bool HasLockImplementation() override;
|
|
void Lock() override;
|
|
bool LockMS(AuUInt64 timeout) override;
|
|
bool LockNS(AuUInt64 timeout) override;
|
|
void Unlock() override;
|
|
|
|
private:
|
|
AuUInt32 value_ {};
|
|
};
|
|
} |