Ryujinx/Ryujinx.Core/OsHle/Handles/KThread.cs

21 lines
530 B
C#
Raw Normal View History

2018-02-05 00:08:20 +01:00
using ChocolArm64;
namespace Ryujinx.Core.OsHle.Handles
2018-02-05 00:08:20 +01:00
{
class KThread : KSynchronizationObject
2018-02-05 00:08:20 +01:00
{
public AThread Thread { get; private set; }
public int ProcessorId { get; private set; }
public int Priority { get; set; }
public int ThreadId => Thread.ThreadId;
public KThread(AThread Thread, int ProcessorId, int Priority)
2018-02-05 00:08:20 +01:00
{
this.Thread = Thread;
this.ProcessorId = ProcessorId;
this.Priority = Priority;
2018-02-05 00:08:20 +01:00
}
}
}