2021-06-27 21:33:58 +00:00
|
|
|
/***
|
|
|
|
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
|
|
|
|
2021-06-30 12:00:32 +00:00
|
|
|
void ShutdownSync()
|
|
|
|
{
|
|
|
|
ShutdownSched();
|
2021-06-27 21:25:29 +00:00
|
|
|
}
|
|
|
|
}
|