This commit is contained in:
Lordmau5 2018-06-26 02:04:06 +00:00 committed by GitHub
commit abe58c9527
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 1 deletions

View file

@ -72,7 +72,8 @@ namespace Ryujinx.HLE.OsHle.Kernel
{ 0x29, SvcGetInfo },
{ 0x2c, SvcMapPhysicalMemory },
{ 0x2d, SvcUnmapPhysicalMemory },
{ 0x32, SvcSetThreadActivity }
{ 0x32, SvcSetThreadActivity },
{ 0x33, SvcGetThreadContext3 }
};
this.Ns = Ns;

View file

@ -280,5 +280,15 @@ namespace Ryujinx.HLE.OsHle.Kernel
ThreadState.X0 = MakeError(ErrorModule.Kernel, KernelErr.InvalidHandle);
}
}
private void SvcGetThreadContext3(AThreadState ThreadState)
{
int Handle = (int)ThreadState.X0;
long ThreadContext = (long)ThreadState.X1;
Ns.Log.PrintStub(LogClass.KernelSvc, "Stubbed. - " + ThreadContext);
ThreadState.X0 = 0;
}
}
}