From c73841500a7bf98f9f4006d25507b7b596257cbd Mon Sep 17 00:00:00 2001 From: bunnei Date: Fri, 17 Dec 2021 16:05:51 -0800 Subject: 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. --- src/core/hle/lock.cpp | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 src/core/hle/lock.cpp (limited to 'src/core/hle/lock.cpp') 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 @@ -// Copyright 2017 Citra Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. - -#include - -namespace HLE { -std::recursive_mutex g_hle_lock; -} -- cgit v1.2.3