Reece
e82ec4a343
[+] AuThreading.WakeAllOnAddress [+] AuThreading.WakeOnAddress [+] AuThreading.WakeNOnAddress [+] AuThreading.TryWaitOnAddress [+] AuThreading.WaitOnAddress [*] Further optimize synch primitives [+] AuThreadPrimitives::RWRenterableLock
32 lines
724 B
C++
32 lines
724 B
C++
/***
|
|
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: AuMutex.Unix.hpp
|
|
Date: 2021-6-12
|
|
Author: Reece
|
|
***/
|
|
#pragma once
|
|
|
|
#include "AuConditionMutex.Unix.hpp"
|
|
|
|
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;
|
|
bool LockNS(AuUInt64 timeout) override;
|
|
void Unlock() override;
|
|
|
|
private:
|
|
AuInt32 value_ {};
|
|
pthread_cond_t pthreadCv_ {};
|
|
UnixConditionMutex mutex_;
|
|
};
|
|
} |