AuroraRuntime/Source/Threading/Primitives/AuCriticalSection.hpp

33 lines
777 B
C++
Raw Normal View History

2021-06-27 21:25:29 +00:00
/***
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
2022-11-17 07:46:07 +00:00
File: AuCriticalSection.hpp
2021-06-27 21:25:29 +00:00
Date: 2021-6-12
Author: Reece
***/
#pragma once
2022-11-17 07:46:07 +00:00
#include "AuMutex.Generic.hpp"
#include "ThreadCookie.hpp"
2021-06-27 21:25:29 +00:00
namespace Aurora::Threading::Primitives
{
struct CriticalSectionImpl : IWaitable
2021-06-27 21:25:29 +00:00
{
CriticalSectionImpl();
~CriticalSectionImpl();
2021-06-27 21:25:29 +00:00
bool HasOSHandle(AuMach &mach) override;
bool HasLockImplementation() override;
bool TryLock() override;
void Lock() override;
bool LockMS(AuUInt64 timeout) override;
bool LockNS(AuUInt64 timeout) override;
2021-06-27 21:25:29 +00:00
void Unlock() override;
private:
MutexImpl mutex_;
ThreadCookie_t owner_;
AuUInt32 count_;
2021-06-27 21:25:29 +00:00
};
}