1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-09-21 14:33:30 +01:00
Ryujinx/Ryujinx.Core/OsHle/Handles/KThread.cs

21 lines
530 B
C#
Raw Normal View History

2018-02-04 23:08:20 +00:00
using ChocolArm64;
namespace Ryujinx.Core.OsHle.Handles
2018-02-04 23:08:20 +00:00
{
class KThread : KSynchronizationObject
2018-02-04 23:08:20 +00: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-04 23:08:20 +00:00
{
this.Thread = Thread;
this.ProcessorId = ProcessorId;
this.Priority = Priority;
2018-02-04 23:08:20 +00:00
}
}
}