Ac_K PR feedback

This commit is contained in:
gdk 2023-01-04 18:41:31 -03:00
parent 50cc2a67be
commit b9ddde3be1
2 changed files with 2 additions and 2 deletions

View file

@ -350,8 +350,7 @@ namespace Ryujinx.HLE.HOS
// TODO:
// - Pass enough information (capabilities, process creation info, etc) on ServiceEntry for proper initialization.
// - Have the ThreadStart function take the syscall, address space and thread context parameters instead of passing
// them here.
// - Have the ThreadStart function take the syscall, address space and thread context parameters instead of passing them here.
KernelStatic.StartInitialProcess(KernelContext, creationInfo, defaultCapabilities, 44, () =>
{
service.Start(KernelContext.Syscall, KernelStatic.GetCurrentProcess().CpuMemory, KernelStatic.GetCurrentThread().ThreadContext);

View file

@ -28,6 +28,7 @@ namespace Ryujinx.Horizon.Sdk.OsTypes
lock (_event.EventLock)
{
_node = _event.MultiWaitHolders.AddLast(this);
return _event.IsSignaledThreadUnsafe();
}
}