2021-10-02 10:28:49 +00:00
|
|
|
/***
|
|
|
|
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
|
|
|
|
File: LSCondition.cpp
|
|
|
|
Date: 2021-10-1
|
|
|
|
Author: Reece
|
|
|
|
***/
|
|
|
|
#include <Source/RuntimeInternal.hpp>
|
|
|
|
#include "LSCondition.hpp"
|
|
|
|
|
|
|
|
namespace Aurora::Loop
|
|
|
|
{
|
2021-10-24 10:19:47 +00:00
|
|
|
AUKN_SYM AuSPtr<IConditionVar> NewLSCondVar(const AuSPtr<AuThreading::IWaitable> &primitive)
|
2021-10-03 12:47:16 +00:00
|
|
|
{
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
AUKN_SYM AuSPtr<IConditionVar> NewLSCondVar(const AuSPtr<ILSMutex> &source)
|
|
|
|
{
|
|
|
|
return {};
|
|
|
|
}
|
2021-10-02 10:28:49 +00:00
|
|
|
}
|