summaryrefslogtreecommitdiff
path: root/src/core/hle/svc.cpp
diff options
context:
space:
mode:
authorGravatar danzel2017-08-29 20:39:55 +1200
committerGravatar danzel2017-08-29 20:39:55 +1200
commit826606479682234c98e4dfa6e616e637a28d4fcc (patch)
treebe6cbcc451182e0ec9801470b9c454e94ba124c5 /src/core/hle/svc.cpp
parentMerge pull request #2839 from Subv/global_kernel_lock (diff)
downloadyuzu-826606479682234c98e4dfa6e616e637a28d4fcc.tar.gz
yuzu-826606479682234c98e4dfa6e616e637a28d4fcc.tar.xz
yuzu-826606479682234c98e4dfa6e616e637a28d4fcc.zip
Use recursive_mutex instead of mutex to fix #2902
Diffstat (limited to 'src/core/hle/svc.cpp')
-rw-r--r--src/core/hle/svc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/svc.cpp b/src/core/hle/svc.cpp
index b98938cb4..dfc36748c 100644
--- a/src/core/hle/svc.cpp
+++ b/src/core/hle/svc.cpp
@@ -1334,7 +1334,7 @@ void CallSVC(u32 immediate) {
1334 MICROPROFILE_SCOPE(Kernel_SVC); 1334 MICROPROFILE_SCOPE(Kernel_SVC);
1335 1335
1336 // Lock the global kernel mutex when we enter the kernel HLE. 1336 // Lock the global kernel mutex when we enter the kernel HLE.
1337 std::lock_guard<std::mutex> lock(HLE::g_hle_lock); 1337 std::lock_guard<std::recursive_mutex> lock(HLE::g_hle_lock);
1338 1338
1339 const FunctionDef* info = GetSVCInfo(immediate); 1339 const FunctionDef* info = GetSVCInfo(immediate);
1340 if (info) { 1340 if (info) {