summaryrefslogtreecommitdiff
path: root/src/core/hle/lock.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2021-12-17 16:05:51 -0800
committerGravatar bunnei2021-12-17 16:05:51 -0800
commitc73841500a7bf98f9f4006d25507b7b596257cbd (patch)
treea7d617bc9b1525a5c342c34a8b909c15bf6cb293 /src/core/hle/lock.cpp
parentMerge pull request #7532 from goldenx86/patch-3 (diff)
downloadyuzu-c73841500a7bf98f9f4006d25507b7b596257cbd.tar.gz
yuzu-c73841500a7bf98f9f4006d25507b7b596257cbd.tar.xz
yuzu-c73841500a7bf98f9f4006d25507b7b596257cbd.zip
core: hle: Remove global HLE lock.
- This was added early on as a hack to protect against some concurrency issues. - It's not clear that this serves any purpose anymore, and if it does, individual components should be fixed rather than using a global recursive mutex.
Diffstat (limited to 'src/core/hle/lock.cpp')
-rw-r--r--src/core/hle/lock.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/core/hle/lock.cpp b/src/core/hle/lock.cpp
deleted file mode 100644
index be4bfce3b..000000000
--- a/src/core/hle/lock.cpp
+++ /dev/null
@@ -1,9 +0,0 @@
1// Copyright 2017 Citra Emulator Project
2// Licensed under GPLv2 or any later version
3// Refer to the license.txt file included.
4
5#include <core/hle/lock.h>
6
7namespace HLE {
8std::recursive_mutex g_hle_lock;
9}