AuroraRuntime/Source/Threading/Primitives/AuSemaphore.Unix.hpp
Jamie Reece Wilson a454a2d71e [*] Sync primitive improvements
[*] Reverted a change for UNIX: always never-spin acquire under observational lock
[*] Decreased common case of syscall operations under Linux and UNIX
[*] Unix signaling: prevent waits while during condvar wake up by unlocking before the signal
[*] NT no wait: semaphores must not spin under lock
2023-06-26 08:59:49 +01:00

34 lines
855 B
C++

/***
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: AuSemaphore.Unix.hpp
Date: 2021-6-12
Author: Reece
***/
#pragma once
#include "AuConditionMutex.Unix.hpp"
namespace Aurora::Threading::Primitives
{
struct SemaphoreImpl : ISemaphore
{
SemaphoreImpl(long intialValue = 0);
~SemaphoreImpl();
bool HasOSHandle(AuMach &mach) override;
bool HasLockImplementation() override;
auline bool TryLockNoSpin();
bool TryLock() override;
bool LockMS(AuUInt64 timeout) override;
bool LockNS(AuUInt64 timeout) override;
void Lock() override;
void Unlock(long count) override;
void Unlock() override;
private:
AuInt32 value_ {};
pthread_cond_t pthreadCv_ {};
UnixConditionMutex mutex_;
};
}