RyuKen/Ryujinx/OsHle/Svc/SvcThread.cs

85 lines
2.3 KiB
C#
Raw Normal View History

2018-02-04 23:08:20 +00:00
using ChocolArm64.State;
using Ryujinx.OsHle.Handles;
using System.Threading;
namespace Ryujinx.OsHle.Svc
{
partial class SvcHandler
{
private void SvcCreateThread(ARegisters Registers)
2018-02-04 23:08:20 +00:00
{
long EntryPoint = (long)Registers.X1;
long ArgsPtr = (long)Registers.X2;
long StackTop = (long)Registers.X3;
int Priority = (int)Registers.X4;
int ProcessorId = (int)Registers.X5;
if (Ns.Os.TryGetProcess(Registers.ProcessId, out Process Process))
{
if (ProcessorId == -2)
{
ProcessorId = 0;
}
2018-02-04 23:08:20 +00:00
int Handle = Process.MakeThread(
EntryPoint,
StackTop,
ArgsPtr,
Priority,
ProcessorId);
2018-02-04 23:08:20 +00:00
Registers.X0 = (int)SvcResult.Success;
Registers.X1 = (ulong)Handle;
}
//TODO: Error codes.
}
private void SvcStartThread(ARegisters Registers)
2018-02-04 23:08:20 +00:00
{
int Handle = (int)Registers.X0;
HThread Thread = Ns.Os.Handles.GetData<HThread>(Handle);
2018-02-04 23:08:20 +00:00
if (Thread != null)
2018-02-04 23:08:20 +00:00
{
Process.Scheduler.StartThread(Thread);
2018-02-04 23:08:20 +00:00
Registers.X0 = (int)SvcResult.Success;
}
//TODO: Error codes.
}
private void SvcSleepThread(ARegisters Registers)
2018-02-04 23:08:20 +00:00
{
ulong NanoSecs = Registers.X0;
if (Process.TryGetThread(Registers.Tpidr, out HThread CurrThread))
2018-02-04 23:08:20 +00:00
{
Process.Scheduler.Yield(CurrThread);
2018-02-04 23:08:20 +00:00
}
else
{
Logging.Error($"Thread with TPIDR_EL0 0x{Registers.Tpidr:x16} not found!");
2018-02-04 23:08:20 +00:00
}
Thread.Sleep((int)(NanoSecs / 1000000));
2018-02-04 23:08:20 +00:00
}
private void SvcGetThreadPriority(ARegisters Registers)
2018-02-04 23:08:20 +00:00
{
int Handle = (int)Registers.X1;
HThread Thread = Ns.Os.Handles.GetData<HThread>(Handle);
2018-02-04 23:08:20 +00:00
if (Thread != null)
2018-02-04 23:08:20 +00:00
{
Registers.X1 = (ulong)Thread.Priority;
2018-02-04 23:08:20 +00:00
Registers.X0 = (int)SvcResult.Success;
}
//TODO: Error codes.
}
}
}