AuroraRuntime/Include/Aurora/Threading/Primitives/Mutex.hpp
Reece d755a9d651 [*] Massive perf boost by removing atomic and
[*] Refactor ambiguous IWaitable::Lock(timeoutMs) to LockMS to prevent final using collisions
2023-04-03 08:21:44 +01:00

13 lines
266 B
C++

/***
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: Mutex.hpp
Date: 2021-6-9
Author: Reece
***/
#pragma once
namespace Aurora::Threading::Primitives
{
AUKN_SHARED_SOO(Mutex, IHyperWaitable, kPrimitiveSizeMutex);
}