Fix some races in SvcThreadSync and change the way how yield works
This commit is contained in:
parent
7a8fbcf89f
commit
73a3233d57
7 changed files with 173 additions and 219 deletions
|
@ -40,8 +40,6 @@ namespace Ryujinx.Core.OsHle
|
|||
|
||||
public List<KThread> ThreadArbiterList { get; private set; }
|
||||
|
||||
public object ThreadArbiterListLock { get; private set; }
|
||||
|
||||
public object ThreadSyncLock { get; private set; }
|
||||
|
||||
public KProcessHandleTable HandleTable { get; private set; }
|
||||
|
@ -76,8 +74,6 @@ namespace Ryujinx.Core.OsHle
|
|||
|
||||
ThreadArbiterList = new List<KThread>();
|
||||
|
||||
ThreadArbiterListLock = new object();
|
||||
|
||||
ThreadSyncLock = new object();
|
||||
|
||||
HandleTable = new KProcessHandleTable();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue