Reece
9c8224b931
[+] 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
29 lines
492 B
C++
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();
|
|
} |