Atmosphere/libraries/libstratosphere/include/stratosphere/os/os_interrupt_event.hpp

71 lines
2.1 KiB
C++
Raw Normal View History

/*
* Copyright (c) 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
2020-04-08 09:21:35 +00:00
#include <vapours.hpp>
#include <stratosphere/os/os_event_common.hpp>
#include <stratosphere/os/os_interrupt_event_common.hpp>
#include <stratosphere/os/os_interrupt_event_types.hpp>
#include <stratosphere/os/os_interrupt_event_api.hpp>
namespace ams::os {
class InterruptEvent {
NON_COPYABLE(InterruptEvent);
NON_MOVEABLE(InterruptEvent);
private:
2021-10-10 07:14:06 +00:00
InterruptEventType m_event;
public:
2020-04-08 09:21:35 +00:00
explicit InterruptEvent(InterruptName name, EventClearMode clear_mode) {
2021-10-10 07:14:06 +00:00
InitializeInterruptEvent(std::addressof(m_event), name, clear_mode);
2020-04-08 09:21:35 +00:00
}
~InterruptEvent() {
2021-10-10 07:14:06 +00:00
FinalizeInterruptEvent(std::addressof(m_event));
2020-04-08 09:21:35 +00:00
}
void Wait() {
2021-10-10 07:14:06 +00:00
return WaitInterruptEvent(std::addressof(m_event));
2020-04-08 09:21:35 +00:00
}
2020-04-08 09:21:35 +00:00
bool TryWait() {
2021-10-10 07:14:06 +00:00
return TryWaitInterruptEvent(std::addressof(m_event));
2020-04-08 09:21:35 +00:00
}
2020-04-08 09:21:35 +00:00
bool TimedWait(TimeSpan timeout) {
2021-10-10 07:14:06 +00:00
return TimedWaitInterruptEvent(std::addressof(m_event), timeout);
2020-04-08 09:21:35 +00:00
}
void Clear() {
2021-10-10 07:14:06 +00:00
return ClearInterruptEvent(std::addressof(m_event));
2020-04-08 09:21:35 +00:00
}
operator InterruptEventType &() {
2021-10-10 07:14:06 +00:00
return m_event;
2020-04-08 09:21:35 +00:00
}
operator const InterruptEventType &() const {
2021-10-10 07:14:06 +00:00
return m_event;
2020-04-08 09:21:35 +00:00
}
InterruptEventType *GetBase() {
2021-10-10 07:14:06 +00:00
return std::addressof(m_event);
2020-04-08 09:21:35 +00:00
}
};
2020-04-08 09:21:35 +00:00
}