Only use higher priority on yield, change reschedule to be per-thread instead of using SchedulerThread to store the reschedule flag
This commit is contained in:
parent
73a3233d57
commit
9b9ead94cd
4 changed files with 13 additions and 17 deletions
|
@ -63,7 +63,7 @@ namespace Ryujinx.Core.OsHle.Handles
|
|||
{
|
||||
KThread Thread = Curr.Thread;
|
||||
|
||||
if (Thread.ActualPriority <= MinPriority && (Thread.CoreMask & CoreMask) != 0)
|
||||
if (Thread.ActualPriority < MinPriority && (Thread.CoreMask & CoreMask) != 0)
|
||||
{
|
||||
if (Prev != null)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue