summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/omm/omm.cpp
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2024-02-12 03:01:19 +0100
committerLiam <byteslice@airmail.cc>2024-02-12 15:18:29 +0100
commitbca698a17ae4b39106cd7f8c7eef06ccc7c8d6dd (patch)
treecdb54c90d4ef48e0efc9c4d47d49fd64ea3d7875 /src/core/hle/service/omm/omm.cpp
parentam: rewrite IApplicationCreator (diff)
downloadyuzu-bca698a17ae4b39106cd7f8c7eef06ccc7c8d6dd.tar
yuzu-bca698a17ae4b39106cd7f8c7eef06ccc7c8d6dd.tar.gz
yuzu-bca698a17ae4b39106cd7f8c7eef06ccc7c8d6dd.tar.bz2
yuzu-bca698a17ae4b39106cd7f8c7eef06ccc7c8d6dd.tar.lz
yuzu-bca698a17ae4b39106cd7f8c7eef06ccc7c8d6dd.tar.xz
yuzu-bca698a17ae4b39106cd7f8c7eef06ccc7c8d6dd.tar.zst
yuzu-bca698a17ae4b39106cd7f8c7eef06ccc7c8d6dd.zip
Diffstat (limited to 'src/core/hle/service/omm/omm.cpp')
-rw-r--r--src/core/hle/service/omm/omm.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/core/hle/service/omm/omm.cpp b/src/core/hle/service/omm/omm.cpp
new file mode 100644
index 000000000..b95319e26
--- /dev/null
+++ b/src/core/hle/service/omm/omm.cpp
@@ -0,0 +1,22 @@
+// SPDX-FileCopyrightText: Copyright 2024 yuzu Emulator Project
+// SPDX-License-Identifier: GPL-2.0-or-later
+
+#include "core/hle/service/omm/omm.h"
+#include "core/hle/service/omm/operation_mode_manager.h"
+#include "core/hle/service/omm/policy_manager_system.h"
+#include "core/hle/service/omm/power_state_interface.h"
+#include "core/hle/service/server_manager.h"
+
+namespace Service::OMM {
+
+void LoopProcess(Core::System& system) {
+ auto server_manager = std::make_unique<ServerManager>(system);
+
+ server_manager->RegisterNamedService("idle:sys",
+ std::make_shared<IPolicyManagerSystem>(system));
+ server_manager->RegisterNamedService("omm", std::make_shared<IOperationModeManager>(system));
+ server_manager->RegisterNamedService("spsm", std::make_shared<IPowerStateInterface>(system));
+ ServerManager::RunServer(std::move(server_manager));
+}
+
+} // namespace Service::OMM