AuroraRuntime/Include/Aurora/Threading/Threading.hpp
Reece 9c8224b931 [+] Added TryLockGuard; AU_TRY_LOCK_GUARD_RET_DEF, AU_TRY_LOCK_GUARD, AU_TRY_LOCK_GUARD_RET_VAL, AU_TRY_LOCK_GUARD_RET_DEF
[+] Added explicit AU_WHAT macro, I think people are familiar with this nomenclatures, not sure.
[+] Added try catch around logger write line. I'm sure something will explode around here sooner or later
2021-12-24 16:25:12 +00:00

29 lines
492 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 "LockGuard.hpp"
#include "LockGuardTry.hpp"
#include "Threads/Threads.hpp"
namespace Aurora::Threading
{
/**
@deprecated
*/
AUKN_SYM void ContextYield();
}