2018-02-04 23:08:20 +00:00
|
|
|
using ChocolArm64;
|
2018-05-14 07:01:10 +01:00
|
|
|
using System.Collections.Generic;
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-02-20 20:09:23 +00:00
|
|
|
namespace Ryujinx.Core.OsHle.Handles
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-03-19 18:58:46 +00:00
|
|
|
class KThread : KSynchronizationObject
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
|
|
|
public AThread Thread { get; private set; }
|
|
|
|
|
2018-05-13 04:22:42 +01:00
|
|
|
public int CoreMask { get; set; }
|
|
|
|
|
2018-04-24 19:57:39 +01:00
|
|
|
public long MutexAddress { get; set; }
|
|
|
|
public long CondVarAddress { get; set; }
|
2018-04-21 20:07:16 +01:00
|
|
|
|
2018-05-13 04:22:42 +01:00
|
|
|
private Process Process;
|
|
|
|
|
2018-05-14 07:01:10 +01:00
|
|
|
public List<KThread> MutexWaiters { get; private set; }
|
2018-04-21 20:07:16 +01:00
|
|
|
|
2018-04-24 19:57:39 +01:00
|
|
|
public KThread MutexOwner { get; set; }
|
2018-04-21 20:07:16 +01:00
|
|
|
|
|
|
|
public int ActualPriority { get; private set; }
|
|
|
|
public int WantedPriority { get; private set; }
|
|
|
|
|
2018-05-13 04:22:42 +01:00
|
|
|
public int ActualCore { get; set; }
|
2018-05-14 07:01:10 +01:00
|
|
|
public int IdealCore { get; set; }
|
2018-04-19 03:52:23 +01:00
|
|
|
|
2018-04-21 20:07:16 +01:00
|
|
|
public int WaitHandle { get; set; }
|
2018-02-14 02:43:08 +00:00
|
|
|
|
|
|
|
public int ThreadId => Thread.ThreadId;
|
|
|
|
|
2018-05-13 04:22:42 +01:00
|
|
|
public KThread(
|
|
|
|
AThread Thread,
|
|
|
|
Process Process,
|
|
|
|
int IdealCore,
|
|
|
|
int Priority)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-05-13 04:22:42 +01:00
|
|
|
this.Thread = Thread;
|
|
|
|
this.Process = Process;
|
|
|
|
this.IdealCore = IdealCore;
|
|
|
|
|
2018-05-14 07:01:10 +01:00
|
|
|
MutexWaiters = new List<KThread>();
|
|
|
|
|
2018-05-13 04:22:42 +01:00
|
|
|
CoreMask = 1 << IdealCore;
|
2018-04-21 20:07:16 +01:00
|
|
|
|
|
|
|
ActualPriority = WantedPriority = Priority;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void SetPriority(int Priority)
|
|
|
|
{
|
|
|
|
WantedPriority = Priority;
|
|
|
|
|
|
|
|
UpdatePriority();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void UpdatePriority()
|
|
|
|
{
|
|
|
|
int OldPriority = ActualPriority;
|
|
|
|
|
|
|
|
int CurrPriority = WantedPriority;
|
|
|
|
|
2018-05-14 07:01:10 +01:00
|
|
|
lock (Process.ThreadSyncLock)
|
2018-04-21 20:07:16 +01:00
|
|
|
{
|
2018-05-14 07:01:10 +01:00
|
|
|
foreach (KThread Thread in MutexWaiters)
|
2018-04-21 20:07:16 +01:00
|
|
|
{
|
2018-05-14 07:01:10 +01:00
|
|
|
if (CurrPriority > Thread.WantedPriority)
|
2018-05-13 04:22:42 +01:00
|
|
|
{
|
2018-05-14 07:01:10 +01:00
|
|
|
CurrPriority = Thread.WantedPriority;
|
2018-05-13 04:22:42 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-04-21 20:07:16 +01:00
|
|
|
|
2018-05-14 07:01:10 +01:00
|
|
|
if (CurrPriority != OldPriority)
|
2018-05-13 04:22:42 +01:00
|
|
|
{
|
2018-05-14 07:01:10 +01:00
|
|
|
ActualPriority = CurrPriority;
|
2018-05-13 04:22:42 +01:00
|
|
|
|
2018-05-14 07:01:10 +01:00
|
|
|
Process.Scheduler.Resort(this);
|
2018-05-13 04:22:42 +01:00
|
|
|
|
2018-05-14 07:01:10 +01:00
|
|
|
MutexOwner?.UpdatePriority();
|
2018-04-21 20:07:16 +01:00
|
|
|
}
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|