J Reece Wilson
2209aeb7a8
[*] BSD: Rewrote fundamentally flawed pthread_mutex class code to use MONOTONIC clock time [+] Linus SwInfo: Added enterprise check for RedHat
29 lines
600 B
C++
29 lines
600 B
C++
/***
|
|
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: AuConditionMutex.Unix.hpp
|
|
Date: 2021-6-12
|
|
Author: Reece
|
|
***/
|
|
#pragma once
|
|
|
|
#include "AuIConditionMutexEx.hpp"
|
|
|
|
namespace Aurora::Threading::Primitives
|
|
{
|
|
class UnixConditionMutex : public IConditionMutexEx
|
|
{
|
|
public:
|
|
UnixConditionMutex();
|
|
~UnixConditionMutex();
|
|
|
|
void Lock() override;
|
|
void Unlock() override;
|
|
AuUInt GetOSHandle() override;
|
|
|
|
private:
|
|
pthread_mutex_t value_;
|
|
};
|
|
|
|
using ConditionMutexImpl = UnixConditionMutex;
|
|
} |