a936972614
Converts services to have their own processes
24 lines
927 B
C++
24 lines
927 B
C++
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include "core/hle/service/server_manager.h"
|
|
#include "core/hle/service/set/set.h"
|
|
#include "core/hle/service/set/set_cal.h"
|
|
#include "core/hle/service/set/set_fd.h"
|
|
#include "core/hle/service/set/set_sys.h"
|
|
#include "core/hle/service/set/settings.h"
|
|
|
|
namespace Service::Set {
|
|
|
|
void LoopProcess(Core::System& system) {
|
|
auto server_manager = std::make_unique<ServerManager>(system);
|
|
|
|
server_manager->RegisterNamedService("set", std::make_shared<SET>(system));
|
|
server_manager->RegisterNamedService("set:cal", std::make_shared<SET_CAL>(system));
|
|
server_manager->RegisterNamedService("set:fd", std::make_shared<SET_FD>(system));
|
|
server_manager->RegisterNamedService("set:sys", std::make_shared<SET_SYS>(system));
|
|
ServerManager::RunServer(std::move(server_manager));
|
|
}
|
|
|
|
} // namespace Service::Set
|