mirror of
https://github.com/Atmosphere-NX/Atmosphere-libs.git
synced 2025-11-06 14:01:18 +01:00
This implements waitable management for Events (and implements Events). It also refactors PM to use new Event/Waitable semantics, and also adds STS_ASSERT as a macro for asserting a boolean expression. The rest of stratosphere has been refactored to use STS_ASSERT whenever possible.
39 lines
1.3 KiB
C++
39 lines
1.3 KiB
C++
/*
|
|
* Copyright (c) 2018-2019 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_waitable_holder_base.hpp"
|
|
|
|
namespace sts::os::impl {
|
|
|
|
class WaitableHolderOfInterruptEvent : public WaitableHolderOfKernelObject {
|
|
private:
|
|
InterruptEvent *event;
|
|
public:
|
|
explicit WaitableHolderOfInterruptEvent(InterruptEvent *e) : event(e) { /* ... */ }
|
|
|
|
/* IsSignaled, GetHandle both implemented. */
|
|
virtual TriBool IsSignaled() const override {
|
|
return TriBool::Undefined;
|
|
}
|
|
|
|
virtual Handle GetHandle() const override {
|
|
STS_ASSERT(this->event->is_initialized);
|
|
return this->event->handle.Get();
|
|
}
|
|
};
|
|
|
|
}
|