AuroraRuntime/Source/Async/Async.cpp

23 lines
372 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-09-30 14:57:41 +00:00
#include <Source/RuntimeInternal.hpp>
2021-06-27 21:25:29 +00:00
#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
{
DeinitSched();
2021-06-27 21:25:29 +00:00
}
}