diff options
| author | Ac_K <Acoustik666@gmail.com> | 2023-09-14 09:50:19 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-14 09:50:19 +0200 |
| commit | e6700b314f1384f015666767baf9ea1d8411e330 (patch) | |
| tree | 4adba27f9fd232e279d1697a54a4f3c4e374d806 /src/Ryujinx.Horizon/MmNv | |
| parent | e2cfe6fe44b62d7aba1425ae2e621f50045f406c (diff) | |
lbl: Migrate service to Horizon (#5628)
* lbl: Migrate service to Horizon
* Fix formatting
* Addresses gdkchan's feedback
* Fix comments
Diffstat (limited to 'src/Ryujinx.Horizon/MmNv')
| -rw-r--r-- | src/Ryujinx.Horizon/MmNv/MmNvIpcServer.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Ryujinx.Horizon/MmNv/MmNvIpcServer.cs b/src/Ryujinx.Horizon/MmNv/MmNvIpcServer.cs index e60b2558..b6615d2c 100644 --- a/src/Ryujinx.Horizon/MmNv/MmNvIpcServer.cs +++ b/src/Ryujinx.Horizon/MmNv/MmNvIpcServer.cs @@ -6,14 +6,14 @@ namespace Ryujinx.Horizon.MmNv { class MmNvIpcServer { - private const int MmNvMaxSessionsCount = 9; + private const int MaxSessionsCount = 40; private const int PointerBufferSize = 0; private const int MaxDomains = 0; private const int MaxDomainObjects = 0; private const int MaxPortsCount = 1; - private static readonly ManagerOptions _mmNvOptions = 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.MmNv _sm = new SmApi(); _sm.Initialize().AbortOnFailure(); - _serverManager = new ServerManager(allocator, _sm, MaxPortsCount, _mmNvOptions, MmNvMaxSessionsCount); + _serverManager = new ServerManager(allocator, _sm, MaxPortsCount, _managerOptions, MaxSessionsCount); - _serverManager.RegisterObjectForServer(new Request(), ServiceName.Encode("mm:u"), MmNvMaxSessionsCount); + _serverManager.RegisterObjectForServer(new Request(), ServiceName.Encode("mm:u"), MaxSessionsCount); } public void ServiceRequests() |
