mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-14 22:40:18 +00:00
Ac_K PR feedback
This commit is contained in:
parent
50cc2a67be
commit
b9ddde3be1
2 changed files with 2 additions and 2 deletions
|
@ -350,8 +350,7 @@ namespace Ryujinx.HLE.HOS
|
||||||
|
|
||||||
// TODO:
|
// TODO:
|
||||||
// - Pass enough information (capabilities, process creation info, etc) on ServiceEntry for proper initialization.
|
// - 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
|
// - Have the ThreadStart function take the syscall, address space and thread context parameters instead of passing them here.
|
||||||
// them here.
|
|
||||||
KernelStatic.StartInitialProcess(KernelContext, creationInfo, defaultCapabilities, 44, () =>
|
KernelStatic.StartInitialProcess(KernelContext, creationInfo, defaultCapabilities, 44, () =>
|
||||||
{
|
{
|
||||||
service.Start(KernelContext.Syscall, KernelStatic.GetCurrentProcess().CpuMemory, KernelStatic.GetCurrentThread().ThreadContext);
|
service.Start(KernelContext.Syscall, KernelStatic.GetCurrentProcess().CpuMemory, KernelStatic.GetCurrentThread().ThreadContext);
|
||||||
|
|
|
@ -28,6 +28,7 @@ namespace Ryujinx.Horizon.Sdk.OsTypes
|
||||||
lock (_event.EventLock)
|
lock (_event.EventLock)
|
||||||
{
|
{
|
||||||
_node = _event.MultiWaitHolders.AddLast(this);
|
_node = _event.MultiWaitHolders.AddLast(this);
|
||||||
|
|
||||||
return _event.IsSignaledThreadUnsafe();
|
return _event.IsSignaledThreadUnsafe();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue