2021-06-27 21:25:29 +00:00
|
|
|
/***
|
|
|
|
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
|
|
|
|
File: WaitFor.hpp
|
|
|
|
Date: 2021-6-12
|
|
|
|
Author: Reece
|
|
|
|
***/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace Aurora::Threading
|
|
|
|
{
|
2023-09-12 17:21:36 +00:00
|
|
|
/// @deprecated
|
|
|
|
static void YieldToOtherThread()
|
|
|
|
{
|
|
|
|
Aurora::Threading::ContextYield();
|
|
|
|
}
|
2021-06-27 21:25:29 +00:00
|
|
|
}
|