AuroraRuntime/Source/Threading/Primitives/AuSemaphore.Linux.hpp
J Reece Wilson 2209aeb7a8 [+] Linux: semaphores and mutexes directly over futexes. Move UNIX pthread condvar mutex into the condvar mutex class.
[*] BSD: Rewrote fundamentally flawed pthread_mutex class code to use MONOTONIC clock time
[+] Linus SwInfo: Added enterprise check for RedHat
2022-12-28 23:44:45 +00:00

28 lines
648 B
C++

/***
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: AuSemaphore.Linux.hpp
Date: 2022-12-28
Author: Reece
***/
#pragma once
namespace Aurora::Threading::Primitives
{
struct Semaphore : ISemaphore
{
Semaphore(long intialValue = 0);
~Semaphore();
bool HasOSHandle(AuMach &mach) override;
bool HasLockImplementation() override;
bool TryLock() override;
bool Lock(AuUInt64 timeout) override;
void Lock() override;
void Unlock(long count) override;
void Unlock() override;
private:
AuUInt32 value_ {};
};
}