1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-09-20 05:53:24 +01:00
Atmosphere/stratosphere/fatal/source/fatal_service.hpp

57 lines
2 KiB
C++
Raw Normal View History

2019-07-19 03:09:35 +01:00
/*
* 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 <stratosphere.hpp>
namespace ams::fatal::srv {
2019-07-19 03:09:35 +01:00
2019-10-18 03:39:22 +01:00
class UserService final : public sf::IServiceObject {
2019-07-19 03:09:35 +01:00
private:
enum class CommandId {
ThrowFatal = 0,
ThrowFatalWithPolicy = 1,
ThrowFatalWithCpuContext = 2,
};
private:
/* Actual commands. */
Result ThrowFatal(Result error, const sf::ClientProcessId &client_pid);
Result ThrowFatalWithPolicy(Result error, const sf::ClientProcessId &client_pid, FatalType policy);
Result ThrowFatalWithCpuContext(Result error, const sf::ClientProcessId &client_pid, FatalType policy, const CpuContext &cpu_ctx);
2019-07-19 03:09:35 +01:00
public:
DEFINE_SERVICE_DISPATCH_TABLE {
2019-10-18 03:39:22 +01:00
MAKE_SERVICE_COMMAND_META(ThrowFatal),
MAKE_SERVICE_COMMAND_META(ThrowFatalWithPolicy),
MAKE_SERVICE_COMMAND_META(ThrowFatalWithCpuContext),
2019-07-19 03:09:35 +01:00
};
};
2019-10-18 03:39:22 +01:00
class PrivateService final : public sf::IServiceObject {
2019-07-19 03:09:35 +01:00
private:
enum class CommandId {
GetFatalEvent = 0,
};
private:
/* Actual commands. */
2019-10-18 03:39:22 +01:00
Result GetFatalEvent(sf::OutCopyHandle out_h);
2019-07-19 03:09:35 +01:00
public:
DEFINE_SERVICE_DISPATCH_TABLE {
2019-10-18 03:39:22 +01:00
MAKE_SERVICE_COMMAND_META(GetFatalEvent),
2019-07-19 03:09:35 +01:00
};
};
}