From f76943cfd29905a568e45260a5c01018dc639de0 Mon Sep 17 00:00:00 2001 From: lizzie Date: Fri, 31 Oct 2025 18:05:46 +0000 Subject: [PATCH] [core/hle/kernel] fix scoped JIT remnants Signed-off-by: lizzie --- src/core/hle/kernel/k_process.cpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/core/hle/kernel/k_process.cpp b/src/core/hle/kernel/k_process.cpp index 80566b7e77..0dcbeb2d06 100644 --- a/src/core/hle/kernel/k_process.cpp +++ b/src/core/hle/kernel/k_process.cpp @@ -1266,13 +1266,8 @@ void KProcess::InitializeInterfaces() { #ifdef HAS_NCE if (this->IsApplication() && Settings::IsNceEnabled()) { - // Register the scoped JIT handler before creating any NCE instances - // so that its signal handler will appear first in the signal chain. - Core::ScopedJitExecution::RegisterHandler(); - - for (size_t i = 0; i < Core::Hardware::NUM_CPU_CORES; i++) { + for (size_t i = 0; i < Core::Hardware::NUM_CPU_CORES; i++) m_arm_interfaces[i] = std::make_unique(m_kernel.System(), true, i); - } } else #endif if (this->Is64Bit()) {