2021-06-27 21:25:29 +00:00
|
|
|
/***
|
|
|
|
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
|
|
|
|
{
|
2023-04-03 07:21:44 +00:00
|
|
|
AUKN_SHARED_SOO(Mutex, IHyperWaitable, kPrimitiveSizeMutex);
|
2021-06-27 21:25:29 +00:00
|
|
|
}
|