AuroraRuntime/Include/Aurora/Threading/Threading.hpp
Reece e82ec4a343 [+] IWaitable::LockNS(...)
[+] AuThreading.WakeAllOnAddress
[+] AuThreading.WakeOnAddress
[+] AuThreading.WakeNOnAddress
[+] AuThreading.TryWaitOnAddress
[+] AuThreading.WaitOnAddress
[*] Further optimize synch primitives
[+] AuThreadPrimitives::RWRenterableLock
2023-03-12 15:27:28 +00:00

30 lines
521 B
C++

/***
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: Threading.hpp
Date: 2021-6-9
Author: Reece
***/
#pragma once
#include "IWaitable.hpp"
#include "Waitables/Waitables.hpp"
#include "Primitives/Primitives.hpp"
#include "WaitFor.hpp"
#include "Sleep.hpp"
#include "WakeOnAddress.hpp"
#include "LockGuard.hpp"
#include "LockGuardTry.hpp"
#include "Threads/Threads.hpp"
namespace Aurora::Threading
{
/**
@deprecated
*/
AUKN_SYM void ContextYield();
}