summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_thread.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-02-13 10:29:32 +0100
committerbunnei <bunneidev@gmail.com>2021-03-21 22:45:02 +0100
commit5872561077e8b671ee9a80ecd5d116100458a28f (patch)
treecdb8736a1fdd7d1f8b88c3091b96045356ece5b3 /src/core/hle/kernel/k_thread.h
parenthle: kernel: Add initial KMemoryRegionType module. (diff)
downloadyuzu-5872561077e8b671ee9a80ecd5d116100458a28f.tar
yuzu-5872561077e8b671ee9a80ecd5d116100458a28f.tar.gz
yuzu-5872561077e8b671ee9a80ecd5d116100458a28f.tar.bz2
yuzu-5872561077e8b671ee9a80ecd5d116100458a28f.tar.lz
yuzu-5872561077e8b671ee9a80ecd5d116100458a28f.tar.xz
yuzu-5872561077e8b671ee9a80ecd5d116100458a28f.tar.zst
yuzu-5872561077e8b671ee9a80ecd5d116100458a28f.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/k_thread.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/k_thread.h b/src/core/hle/kernel/k_thread.h
index 1c19b23dc..1c86fdd20 100644
--- a/src/core/hle/kernel/k_thread.h
+++ b/src/core/hle/kernel/k_thread.h
@@ -14,10 +14,10 @@
#include "common/common_types.h"
#include "common/intrusive_red_black_tree.h"
-#include "common/spin_lock.h"
#include "core/arm/arm_interface.h"
#include "core/hle/kernel/k_affinity_mask.h"
#include "core/hle/kernel/k_light_lock.h"
+#include "core/hle/kernel/k_spin_lock.h"
#include "core/hle/kernel/k_synchronization_object.h"
#include "core/hle/kernel/object.h"
#include "core/hle/kernel/svc_common.h"
@@ -732,7 +732,7 @@ private:
s8 priority_inheritance_count{};
bool resource_limit_release_hint{};
StackParameters stack_parameters{};
- Common::SpinLock context_guard{};
+ KSpinLock context_guard{};
// For emulation
std::shared_ptr<Common::Fiber> host_context{};