2018-03-20 13:55:20 +00:00
|
|
|
// Copyright 2018 yuzu emulator team
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "common/logging/log.h"
|
|
|
|
#include "core/hle/ipc_helpers.h"
|
|
|
|
#include "core/hle/service/fatal/fatal.h"
|
|
|
|
#include "core/hle/service/fatal/fatal_p.h"
|
|
|
|
#include "core/hle/service/fatal/fatal_u.h"
|
|
|
|
|
2018-04-20 01:41:44 +00:00
|
|
|
namespace Service::Fatal {
|
2018-03-20 13:55:20 +00:00
|
|
|
|
|
|
|
Module::Interface::Interface(std::shared_ptr<Module> module, const char* name)
|
|
|
|
: ServiceFramework(name), module(std::move(module)) {}
|
|
|
|
|
2018-05-18 21:28:30 +00:00
|
|
|
void Module::Interface::ThrowFatalWithPolicy(Kernel::HLERequestContext& ctx) {
|
2018-03-20 13:55:20 +00:00
|
|
|
IPC::RequestParser rp(ctx);
|
|
|
|
u32 error_code = rp.Pop<u32>();
|
2018-07-02 16:13:26 +00:00
|
|
|
LOG_WARNING(Service_Fatal, "(STUBBED) called, error_code=0x{:X}", error_code);
|
2018-03-20 13:55:20 +00:00
|
|
|
IPC::ResponseBuilder rb{ctx, 2};
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
|
|
|
}
|
|
|
|
|
2018-05-18 21:28:30 +00:00
|
|
|
void Module::Interface::ThrowFatalWithCpuContext(Kernel::HLERequestContext& ctx) {
|
2018-07-02 16:13:26 +00:00
|
|
|
LOG_WARNING(Service_Fatal, "(STUBBED) called");
|
2018-03-20 13:55:20 +00:00
|
|
|
IPC::ResponseBuilder rb{ctx, 2};
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
|
|
|
}
|
|
|
|
|
|
|
|
void InstallInterfaces(SM::ServiceManager& service_manager) {
|
|
|
|
auto module = std::make_shared<Module>();
|
|
|
|
std::make_shared<Fatal_P>(module)->InstallAsService(service_manager);
|
|
|
|
std::make_shared<Fatal_U>(module)->InstallAsService(service_manager);
|
|
|
|
}
|
|
|
|
|
2018-04-20 01:41:44 +00:00
|
|
|
} // namespace Service::Fatal
|