IPC refactor part 1: Use explicit separate threads to process requests (#1447)
* Changes to allow explicit management of service threads * Remove now unused code * Remove ThreadCounter, its no longer needed * Allow and use separate server per service, also fix exit issues * New policy change: PTC version now uses PR number
This commit is contained in:
parent
5dd6f41ff4
commit
6c9565693f
18 changed files with 138 additions and 135 deletions
|
@ -24,8 +24,6 @@ namespace Ryujinx.HLE.HOS.Kernel
|
|||
public Syscall Syscall { get; }
|
||||
public SyscallHandler SyscallHandler { get; }
|
||||
|
||||
public CountdownEvent ThreadCounter { get; }
|
||||
|
||||
public KResourceLimit ResourceLimit { get; }
|
||||
|
||||
public KMemoryRegionManager[] MemoryRegions { get; }
|
||||
|
@ -57,8 +55,6 @@ namespace Ryujinx.HLE.HOS.Kernel
|
|||
|
||||
SyscallHandler = new SyscallHandler(this);
|
||||
|
||||
ThreadCounter = new CountdownEvent(1);
|
||||
|
||||
ResourceLimit = new KResourceLimit(this);
|
||||
|
||||
KernelInit.InitializeResourceLimit(ResourceLimit);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue