J Reece Wilson
2209aeb7a8
[*] BSD: Rewrote fundamentally flawed pthread_mutex class code to use MONOTONIC clock time [+] Linus SwInfo: Added enterprise check for RedHat
27 lines
568 B
C++
Executable File
27 lines
568 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 Mutex : IWaitable
|
|
{
|
|
Mutex();
|
|
~Mutex();
|
|
|
|
bool HasOSHandle(AuMach &mach) override;
|
|
bool TryLock() override;
|
|
bool HasLockImplementation() override;
|
|
void Lock() override;
|
|
bool Lock(AuUInt64 timeout) override;
|
|
void Unlock() override;
|
|
|
|
private:
|
|
AuUInt32 value_ {};
|
|
};
|
|
} |