2022-05-31 21:29:35 +02:00
|
|
|
using Ryujinx.Cpu;
|
2020-05-04 05:41:29 +02:00
|
|
|
using Ryujinx.HLE.HOS.Kernel.Threading;
|
|
|
|
|
|
|
|
namespace Ryujinx.HLE.HOS.Kernel.SupervisorCall
|
|
|
|
{
|
|
|
|
partial class SyscallHandler
|
|
|
|
{
|
|
|
|
private readonly KernelContext _context;
|
|
|
|
|
|
|
|
public SyscallHandler(KernelContext context)
|
|
|
|
{
|
|
|
|
_context = context;
|
|
|
|
}
|
|
|
|
|
2022-05-31 21:29:35 +02:00
|
|
|
public void SvcCall(IExecutionContext context, ulong address, int id)
|
2020-05-04 05:41:29 +02:00
|
|
|
{
|
2021-12-30 10:55:06 +01:00
|
|
|
KThread currentThread = KernelStatic.GetCurrentThread();
|
|
|
|
|
|
|
|
if (currentThread.Owner != null &&
|
|
|
|
currentThread.GetUserDisableCount() != 0 &&
|
|
|
|
currentThread.Owner.PinnedThreads[currentThread.CurrentCore] == null)
|
|
|
|
{
|
|
|
|
_context.CriticalSection.Enter();
|
|
|
|
|
|
|
|
currentThread.Owner.PinThread(currentThread);
|
|
|
|
|
|
|
|
currentThread.SetUserInterruptFlag();
|
|
|
|
|
|
|
|
_context.CriticalSection.Leave();
|
|
|
|
}
|
|
|
|
|
2020-05-04 05:41:29 +02:00
|
|
|
if (context.IsAarch32)
|
|
|
|
{
|
2022-05-31 22:12:46 +02:00
|
|
|
SyscallDispatch.Dispatch32(_context.Syscall, context, id);
|
2020-05-04 05:41:29 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2022-05-31 22:12:46 +02:00
|
|
|
SyscallDispatch.Dispatch64(_context.Syscall, context, id);
|
2020-05-04 05:41:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
currentThread.HandlePostSyscall();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|