Host tracked needs signal handling too

This commit is contained in:
Gabriel A 2024-01-04 18:04:51 -03:00
parent 2feecd05a3
commit 85f83592c7

View File

@ -69,7 +69,9 @@ namespace Ryujinx.Cpu.LightningJit
FunctionTable.Fill = (ulong)Stubs.SlowDispatchStub;
if (memory.Type == MemoryManagerType.HostMapped || memory.Type == MemoryManagerType.HostMappedUnsafe)
if (memory.Type == MemoryManagerType.HostTracked ||
memory.Type == MemoryManagerType.HostMapped ||
memory.Type == MemoryManagerType.HostMappedUnsafe)
{
NativeSignalHandler.InitializeSignalHandler(allocator.GetPageSize());
}