2018-02-04 20:08:20 -03:00
|
|
|
using ChocolArm64;
|
|
|
|
|
2018-02-20 22:09:23 +02:00
|
|
|
namespace Ryujinx.Core.OsHle.Handles
|
2018-02-04 20:08:20 -03:00
|
|
|
{
|
2018-03-19 15:58:46 -03:00
|
|
|
class KThread : KSynchronizationObject
|
2018-02-04 20:08:20 -03:00
|
|
|
{
|
|
|
|
public AThread Thread { get; private set; }
|
|
|
|
|
2018-02-13 23:43:08 -03:00
|
|
|
public int ProcessorId { get; private set; }
|
2018-02-25 19:58:16 +01:00
|
|
|
public int Priority { get; set; }
|
2018-02-13 23:43:08 -03:00
|
|
|
|
|
|
|
public int ThreadId => Thread.ThreadId;
|
|
|
|
|
2018-03-19 15:58:46 -03:00
|
|
|
public KThread(AThread Thread, int ProcessorId, int Priority)
|
2018-02-04 20:08:20 -03:00
|
|
|
{
|
2018-02-13 23:43:08 -03:00
|
|
|
this.Thread = Thread;
|
|
|
|
this.ProcessorId = ProcessorId;
|
|
|
|
this.Priority = Priority;
|
2018-02-04 20:08:20 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|