suyu/src/core/hle/service/glue/glue.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
1.4 KiB
C++
Raw Normal View History

// SPDX-FileCopyrightText: Copyright 2019 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2019-06-24 19:20:28 -04:00
#include <memory>
#include "core/core.h"
#include "core/hle/service/glue/arp.h"
#include "core/hle/service/glue/bgtc.h"
2021-04-24 11:26:30 -04:00
#include "core/hle/service/glue/ectx.h"
2019-06-24 19:20:28 -04:00
#include "core/hle/service/glue/glue.h"
#include "core/hle/service/glue/notif.h"
#include "core/hle/service/server_manager.h"
2019-06-24 19:20:28 -04:00
namespace Service::Glue {
void LoopProcess(Core::System& system) {
auto server_manager = std::make_unique<ServerManager>(system);
2019-06-24 19:20:28 -04:00
// ARP
server_manager->RegisterNamedService("arp:r",
std::make_shared<ARP_R>(system, system.GetARPManager()));
server_manager->RegisterNamedService("arp:w",
std::make_shared<ARP_W>(system, system.GetARPManager()));
2019-06-24 19:20:28 -04:00
// BackGround Task Controller
server_manager->RegisterNamedService("bgtc:t", std::make_shared<BGTC_T>(system));
server_manager->RegisterNamedService("bgtc:sc", std::make_shared<BGTC_SC>(system));
2021-04-24 11:26:30 -04:00
// Error Context
server_manager->RegisterNamedService("ectx:aw", std::make_shared<ECTX_AW>(system));
// Notification Services for application
server_manager->RegisterNamedService("notif:a", std::make_shared<NOTIF_A>(system));
ServerManager::RunServer(std::move(server_manager));
2019-06-24 19:20:28 -04:00
}
} // namespace Service::Glue