2018-02-05 00:08:20 +01:00
|
|
|
using ChocolArm64.State;
|
2018-02-20 21:09:23 +01:00
|
|
|
using Ryujinx.Core.OsHle.Handles;
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-04-04 21:07:44 +02:00
|
|
|
using static Ryujinx.Core.OsHle.ErrorCode;
|
|
|
|
|
2018-02-20 21:09:23 +01:00
|
|
|
namespace Ryujinx.Core.OsHle.Svc
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
|
|
|
partial class SvcHandler
|
|
|
|
{
|
2018-02-18 20:28:07 +01:00
|
|
|
private void SvcCreateThread(AThreadState ThreadState)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-02-18 20:28:07 +01:00
|
|
|
long EntryPoint = (long)ThreadState.X1;
|
|
|
|
long ArgsPtr = (long)ThreadState.X2;
|
|
|
|
long StackTop = (long)ThreadState.X3;
|
|
|
|
int Priority = (int)ThreadState.X4;
|
|
|
|
int ProcessorId = (int)ThreadState.X5;
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-02-18 20:28:07 +01:00
|
|
|
if (Ns.Os.TryGetProcess(ThreadState.ProcessId, out Process Process))
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-02-14 03:43:08 +01:00
|
|
|
if (ProcessorId == -2)
|
|
|
|
{
|
2018-02-19 20:37:13 +01:00
|
|
|
//TODO: Get this value from the NPDM file.
|
2018-02-14 03:43:08 +01:00
|
|
|
ProcessorId = 0;
|
|
|
|
}
|
|
|
|
|
2018-02-05 00:08:20 +01:00
|
|
|
int Handle = Process.MakeThread(
|
|
|
|
EntryPoint,
|
|
|
|
StackTop,
|
|
|
|
ArgsPtr,
|
|
|
|
Priority,
|
2018-02-14 03:43:08 +01:00
|
|
|
ProcessorId);
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-03-05 20:18:37 +01:00
|
|
|
ThreadState.X0 = 0;
|
2018-02-18 20:28:07 +01:00
|
|
|
ThreadState.X1 = (ulong)Handle;
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//TODO: Error codes.
|
|
|
|
}
|
|
|
|
|
2018-02-18 20:28:07 +01:00
|
|
|
private void SvcStartThread(AThreadState ThreadState)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-02-18 20:28:07 +01:00
|
|
|
int Handle = (int)ThreadState.X0;
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-03-19 19:58:46 +01:00
|
|
|
KThread Thread = Process.HandleTable.GetData<KThread>(Handle);
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-02-14 03:43:08 +01:00
|
|
|
if (Thread != null)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-02-14 03:43:08 +01:00
|
|
|
Process.Scheduler.StartThread(Thread);
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-03-05 20:18:37 +01:00
|
|
|
ThreadState.X0 = 0;
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//TODO: Error codes.
|
|
|
|
}
|
|
|
|
|
2018-03-12 05:04:52 +01:00
|
|
|
private void SvcExitThread(AThreadState ThreadState)
|
|
|
|
{
|
2018-03-19 19:58:46 +01:00
|
|
|
KThread CurrThread = Process.GetThread(ThreadState.Tpidr);
|
|
|
|
|
2018-03-12 05:04:52 +01:00
|
|
|
CurrThread.Thread.StopExecution();
|
2018-03-19 19:58:46 +01:00
|
|
|
|
|
|
|
CurrThread.Handle.Set();
|
2018-03-12 05:04:52 +01:00
|
|
|
}
|
|
|
|
|
2018-02-18 20:28:07 +01:00
|
|
|
private void SvcSleepThread(AThreadState ThreadState)
|
2018-04-04 21:07:44 +02:00
|
|
|
{
|
2018-02-18 20:28:07 +01:00
|
|
|
ulong NanoSecs = ThreadState.X0;
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-03-19 19:58:46 +01:00
|
|
|
KThread CurrThread = Process.GetThread(ThreadState.Tpidr);
|
2018-04-04 21:07:44 +02:00
|
|
|
|
2018-02-19 20:37:13 +01:00
|
|
|
if (NanoSecs == 0)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-02-14 03:43:08 +01:00
|
|
|
Process.Scheduler.Yield(CurrThread);
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-02-19 20:37:13 +01:00
|
|
|
Process.Scheduler.WaitForSignal(CurrThread, (int)(NanoSecs / 1000000));
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-18 20:28:07 +01:00
|
|
|
private void SvcGetThreadPriority(AThreadState ThreadState)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-02-18 20:28:07 +01:00
|
|
|
int Handle = (int)ThreadState.X1;
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-03-19 19:58:46 +01:00
|
|
|
KThread Thread = Process.HandleTable.GetData<KThread>(Handle);
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-02-14 03:43:08 +01:00
|
|
|
if (Thread != null)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-03-05 20:18:37 +01:00
|
|
|
ThreadState.X0 = 0;
|
2018-02-18 20:28:07 +01:00
|
|
|
ThreadState.X1 = (ulong)Thread.Priority;
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//TODO: Error codes.
|
|
|
|
}
|
2018-02-25 19:58:16 +01:00
|
|
|
|
|
|
|
private void SvcSetThreadPriority(AThreadState ThreadState)
|
|
|
|
{
|
2018-03-19 19:58:46 +01:00
|
|
|
int Prio = (int)ThreadState.X0;
|
2018-02-25 19:58:16 +01:00
|
|
|
int Handle = (int)ThreadState.X1;
|
|
|
|
|
2018-03-19 19:58:46 +01:00
|
|
|
KThread Thread = Process.HandleTable.GetData<KThread>(Handle);
|
2018-02-25 19:58:16 +01:00
|
|
|
|
|
|
|
if (Thread != null)
|
|
|
|
{
|
|
|
|
Thread.Priority = Prio;
|
|
|
|
|
2018-03-05 20:18:37 +01:00
|
|
|
ThreadState.X0 = 0;
|
2018-02-25 19:58:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//TODO: Error codes.
|
|
|
|
}
|
|
|
|
|
|
|
|
private void SvcSetThreadCoreMask(AThreadState ThreadState)
|
|
|
|
{
|
2018-03-05 20:18:37 +01:00
|
|
|
ThreadState.X0 = 0;
|
2018-02-25 19:58:16 +01:00
|
|
|
|
|
|
|
//TODO: Error codes.
|
|
|
|
}
|
|
|
|
|
|
|
|
private void SvcGetThreadId(AThreadState ThreadState)
|
|
|
|
{
|
2018-04-04 21:07:44 +02:00
|
|
|
int Handle = (int)ThreadState.X1;
|
2018-02-25 19:58:16 +01:00
|
|
|
|
2018-03-19 19:58:46 +01:00
|
|
|
KThread Thread = Process.HandleTable.GetData<KThread>(Handle);
|
2018-02-25 19:58:16 +01:00
|
|
|
|
|
|
|
if (Thread != null)
|
|
|
|
{
|
2018-03-05 20:18:37 +01:00
|
|
|
ThreadState.X0 = 0;
|
2018-02-25 19:58:16 +01:00
|
|
|
ThreadState.X1 = (ulong)Thread.ThreadId;
|
|
|
|
}
|
2018-04-04 21:07:44 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
Logging.Warn($"Tried to GetThreadId on invalid thread handle 0x{Handle:x8}!");
|
2018-02-25 19:58:16 +01:00
|
|
|
|
2018-04-04 21:07:44 +02:00
|
|
|
ThreadState.X0 = MakeError(ErrorModule.Kernel, KernelErr.InvalidHandle);
|
|
|
|
}
|
2018-02-25 19:58:16 +01:00
|
|
|
}
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
}
|