From e6700b314f1384f015666767baf9ea1d8411e330 Mon Sep 17 00:00:00 2001 From: Ac_K Date: Thu, 14 Sep 2023 09:50:19 +0200 Subject: lbl: Migrate service to Horizon (#5628) * lbl: Migrate service to Horizon * Fix formatting * Addresses gdkchan's feedback * Fix comments --- src/Ryujinx.Horizon/LogManager/LmIpcServer.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/Ryujinx.Horizon/LogManager') diff --git a/src/Ryujinx.Horizon/LogManager/LmIpcServer.cs b/src/Ryujinx.Horizon/LogManager/LmIpcServer.cs index d1a405b8..6bdc3c42 100644 --- a/src/Ryujinx.Horizon/LogManager/LmIpcServer.cs +++ b/src/Ryujinx.Horizon/LogManager/LmIpcServer.cs @@ -6,14 +6,14 @@ namespace Ryujinx.Horizon.LogManager { class LmIpcServer { - private const int LogMaxSessionsCount = 42; + private const int MaxSessionsCount = 42; private const int PointerBufferSize = 0x400; private const int MaxDomains = 31; private const int MaxDomainObjects = 61; private const int MaxPortsCount = 1; - private static readonly ManagerOptions _logManagerOptions = new(PointerBufferSize, MaxDomains, MaxDomainObjects, false); + private static readonly ManagerOptions _managerOptions = new(PointerBufferSize, MaxDomains, MaxDomainObjects, false); private SmApi _sm; private ServerManager _serverManager; @@ -25,9 +25,9 @@ namespace Ryujinx.Horizon.LogManager _sm = new SmApi(); _sm.Initialize().AbortOnFailure(); - _serverManager = new ServerManager(allocator, _sm, MaxPortsCount, _logManagerOptions, LogMaxSessionsCount); + _serverManager = new ServerManager(allocator, _sm, MaxPortsCount, _managerOptions, MaxSessionsCount); - _serverManager.RegisterObjectForServer(new LogService(), ServiceName.Encode("lm"), LogMaxSessionsCount); + _serverManager.RegisterObjectForServer(new LogService(), ServiceName.Encode("lm"), MaxSessionsCount); } public void ServiceRequests() -- cgit v1.2.3