17 lines
304 B
C++
17 lines
304 B
C++
/***
|
|
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
|
|
{
|
|
/// @deprecated
|
|
static void YieldToOtherThread()
|
|
{
|
|
Aurora::Threading::ContextYield();
|
|
}
|
|
} |