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:
@ -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>
|
||||
|
Reference in New Issue
Block a user