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"
|
2023-03-15 00:35:29 +00:00
|
|
|
#include "ThreadCookie.hpp"
|
2021-06-27 21:25:29 +00:00
|
|
|
|
|
|
|
namespace Aurora::Threading::Primitives
|
|
|
|
{
|
2023-04-23 18:23:10 +00:00
|
|
|
struct CriticalSectionImpl : IWaitable
|
2021-06-27 21:25:29 +00:00
|
|
|
{
|
2023-04-23 18:23:10 +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;
|
2023-04-03 07:21:44 +00:00
|
|
|
bool LockMS(AuUInt64 timeout) override;
|
2023-03-12 15:27:28 +00:00
|
|
|
bool LockNS(AuUInt64 timeout) override;
|
2021-06-27 21:25:29 +00:00
|
|
|
void Unlock() override;
|
|
|
|
|
|
|
|
private:
|
2023-04-23 18:23:10 +00:00
|
|
|
MutexImpl mutex_;
|
2023-03-15 00:35:29 +00:00
|
|
|
ThreadCookie_t owner_;
|
2023-04-03 07:21:44 +00:00
|
|
|
AuUInt32 count_;
|
2021-06-27 21:25:29 +00:00
|
|
|
};
|
|
|
|
}
|