Atmosphere/stratosphere/fatal/source/fatal_event_manager.cpp

45 lines
1.6 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/>.
*/
#include <stratosphere.hpp>
#include "fatal_event_manager.hpp"
namespace ams::fatal::srv {
2021-10-10 07:14:06 +00:00
FatalEventManager::FatalEventManager() : m_lock() {
2019-07-19 02:09:35 +00:00
/* Just create all the events. */
for (size_t i = 0; i < FatalEventManager::NumFatalEvents; i++) {
2021-10-10 07:14:06 +00:00
R_ABORT_UNLESS(os::CreateSystemEvent(std::addressof(m_events[i]), os::EventClearMode_AutoClear, true));
}
}
2020-04-08 09:21:35 +00:00
Result FatalEventManager::GetEvent(const os::SystemEventType **out) {
2021-10-10 07:14:06 +00:00
std::scoped_lock lk{m_lock};
2019-06-17 23:41:03 +00:00
2019-07-19 02:09:35 +00:00
/* Only allow GetEvent to succeed NumFatalEvents times. */
2021-10-10 07:14:06 +00:00
R_UNLESS(m_num_events_gotten < FatalEventManager::NumFatalEvents, fatal::ResultTooManyEvents());
2019-06-17 23:41:03 +00:00
2021-10-10 07:14:06 +00:00
*out = std::addressof(m_events[m_num_events_gotten++]);
2022-03-26 07:14:36 +00:00
R_SUCCEED();
2019-07-19 02:09:35 +00:00
}
2019-07-19 02:09:35 +00:00
void FatalEventManager::SignalEvents() {
for (size_t i = 0; i < FatalEventManager::NumFatalEvents; i++) {
2021-10-10 07:14:06 +00:00
os::SignalSystemEvent(std::addressof(m_events[i]));
2019-07-19 02:09:35 +00:00
}
}
2019-07-19 02:09:35 +00:00
}