Isolate more services to separate threads (#1573)
* Isolate more services to separate threads * Fix DisplayServer * Add explanation for vi services
This commit is contained in:
parent
bd28ce90e6
commit
16e9d15674
5 changed files with 8 additions and 5 deletions
|
@ -5,7 +5,8 @@ namespace Ryujinx.HLE.HOS.Services.Vi
|
|||
[Service("vi:u")]
|
||||
class IApplicationRootService : IpcService
|
||||
{
|
||||
public IApplicationRootService(ServiceCtx context) : base(new ServerBase("ViServer")) { }
|
||||
// vi:u/m/s aren't on 3 separate threads but we can't put them together with the current ServerBase
|
||||
public IApplicationRootService(ServiceCtx context) : base(new ServerBase("ViServerU")) { }
|
||||
|
||||
[Command(0)]
|
||||
// GetDisplayService(u32) -> object<nn::visrv::sf::IApplicationDisplayService>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue