2019-07-19 03:09:35 +01:00
|
|
|
/*
|
2021-10-04 20:59:10 +01:00
|
|
|
* Copyright (c) Atmosphère-NX
|
2019-07-19 03:09:35 +01:00
|
|
|
*
|
|
|
|
* 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 <stratosphere.hpp>
|
|
|
|
|
2019-10-24 10:30:10 +01:00
|
|
|
namespace ams::fatal::srv {
|
2019-07-19 03:09:35 +01:00
|
|
|
|
2021-01-18 16:48:47 +00:00
|
|
|
class Service {
|
2020-07-08 01:07:23 +01:00
|
|
|
public:
|
2019-10-24 09:40:44 +01:00
|
|
|
Result ThrowFatal(Result error, const sf::ClientProcessId &client_pid);
|
2019-10-27 22:57:30 +00:00
|
|
|
Result ThrowFatalWithPolicy(Result error, const sf::ClientProcessId &client_pid, FatalPolicy policy);
|
|
|
|
Result ThrowFatalWithCpuContext(Result error, const sf::ClientProcessId &client_pid, FatalPolicy policy, const CpuContext &cpu_ctx);
|
2020-07-08 01:07:23 +01:00
|
|
|
Result GetFatalEvent(sf::OutCopyHandle out_h);
|
2022-03-22 07:51:41 +00:00
|
|
|
Result GetFatalContext(sf::Out<Result> out_error, sf::Out<ncm::ProgramId> out_program_id, sf::Out<fatal::FatalPolicy> out_policy, sf::Out<fatal::CpuContext> out_ctx);
|
2019-07-19 03:09:35 +01:00
|
|
|
};
|
2021-01-18 16:48:47 +00:00
|
|
|
static_assert(fatal::impl::IsIService<Service>);
|
|
|
|
static_assert(fatal::impl::IsIPrivateService<Service>);
|
2019-07-19 03:09:35 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|