diff options
| author | mageven <62494521+mageven@users.noreply.github.com> | 2020-09-25 15:48:28 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-25 20:18:28 +1000 |
| commit | 16e9d1567410de58b8b426fffc93d1a5fe33d834 (patch) | |
| tree | 30e0b9923f11f519d20fc2142cc759c83d068fd5 /Ryujinx.HLE/HOS/Services/Vi/ISystemRootService.cs | |
| parent | bd28ce90e6df04b5b15a5c1149523f3742af38cc (diff) | |
Isolate more services to separate threads (#1573)
* Isolate more services to separate threads
* Fix DisplayServer
* Add explanation for vi services
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Vi/ISystemRootService.cs')
| -rw-r--r-- | Ryujinx.HLE/HOS/Services/Vi/ISystemRootService.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Vi/ISystemRootService.cs b/Ryujinx.HLE/HOS/Services/Vi/ISystemRootService.cs index 8d64e475..65b21613 100644 --- a/Ryujinx.HLE/HOS/Services/Vi/ISystemRootService.cs +++ b/Ryujinx.HLE/HOS/Services/Vi/ISystemRootService.cs @@ -5,7 +5,8 @@ namespace Ryujinx.HLE.HOS.Services.Vi [Service("vi:s")] class ISystemRootService : IpcService { - public ISystemRootService(ServiceCtx context) { } + // vi:u/m/s aren't on 3 separate threads but we can't put them together with the current ServerBase + public ISystemRootService(ServiceCtx context) : base(new ServerBase("ViServerS")) { } [Command(1)] // GetDisplayService(u32) -> object<nn::visrv::sf::IApplicationDisplayService> |
