mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-05 19:51:45 +00:00
70 lines
No EOL
2.1 KiB
C++
70 lines
No EOL
2.1 KiB
C++
/*
|
|
* Copyright (c) 2018-2020 Atmosphère-NX
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms and conditions of the GNU General Public License,
|
|
* version 2, as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
* more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#pragma once
|
|
#include "os_mutex.hpp"
|
|
|
|
namespace ams::os {
|
|
|
|
enum class ConditionVariableStatus {
|
|
TimedOut = 0,
|
|
Success = 1,
|
|
};
|
|
|
|
class ConditionVariable {
|
|
NON_COPYABLE(ConditionVariable);
|
|
NON_MOVEABLE(ConditionVariable);
|
|
private:
|
|
CondVar cv;
|
|
public:
|
|
ConditionVariable() {
|
|
condvarInit(&cv);
|
|
}
|
|
|
|
ConditionVariableStatus TimedWait(::Mutex *m, u64 timeout) {
|
|
if (timeout > 0) {
|
|
/* Abort on any error other than timed out/success. */
|
|
R_TRY_CATCH(condvarWaitTimeout(&this->cv, m, timeout)) {
|
|
R_CATCH(svc::ResultTimedOut) { return ConditionVariableStatus::TimedOut; }
|
|
} R_END_TRY_CATCH_WITH_ASSERT;
|
|
|
|
return ConditionVariableStatus::Success;
|
|
}
|
|
return ConditionVariableStatus::TimedOut;
|
|
}
|
|
|
|
void Wait(::Mutex *m) {
|
|
R_ASSERT(condvarWait(&this->cv, m));
|
|
}
|
|
|
|
ConditionVariableStatus TimedWait(os::Mutex *m, u64 timeout) {
|
|
return this->TimedWait(m->GetMutex(), timeout);
|
|
}
|
|
|
|
void Wait(os::Mutex *m) {
|
|
return this->Wait(m->GetMutex());
|
|
}
|
|
|
|
void Signal() {
|
|
condvarWakeOne(&this->cv);
|
|
}
|
|
|
|
void Broadcast() {
|
|
condvarWakeAll(&this->cv);
|
|
}
|
|
};
|
|
|
|
} |