From b8f86eb78df6a8a7a856b70699eabfd446f5ec5d Mon Sep 17 00:00:00 2001 From: Eladash Date: Thu, 21 May 2020 12:46:49 +0300 Subject: [PATCH] SPU: Fix page faults notifications --- Utilities/Thread.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Utilities/Thread.cpp b/Utilities/Thread.cpp index 4160762ee4..a3ae3212e1 100644 --- a/Utilities/Thread.cpp +++ b/Utilities/Thread.cpp @@ -1382,6 +1382,7 @@ bool handle_access_violation(u32 addr, bool is_writing, x64_context* context) no if (cpu) { + vm::temporary_unlock(*cpu); u32 pf_port_id = 0; if (auto pf_entries = g_fxo->get(); true)