AuroraRuntime/Source/Async/Async.cpp

23 lines
367 B
C++
Raw Normal View History

/***
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: Async.cpp
Date: 2021-6-26
Author: Reece
***/
2021-06-27 21:25:29 +00:00
#include <RuntimeInternal.hpp>
#include "Async.hpp"
2021-06-30 12:00:32 +00:00
#include "Schedular.hpp"
2021-06-27 21:25:29 +00:00
namespace Aurora::Async
{
void InitAsync()
{
2021-06-30 12:00:32 +00:00
InitSched();
}
2021-06-27 21:25:29 +00:00
void ShutdownAsync()
2021-06-30 12:00:32 +00:00
{
ShutdownSched();
2021-06-27 21:25:29 +00:00
}
}