summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_thread.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2022-01-18 01:41:06 +0100
committerbunnei <bunneidev@gmail.com>2022-01-21 02:08:00 +0100
commitf6cbb14dce48bc4ae112a7d5ae2bbca476d3457e (patch)
tree8f993e94c63848f4b4f72392a83d119be9fd351d /src/core/hle/kernel/k_thread.h
parentMerge pull request #7710 from german77/just-shake-it (diff)
downloadyuzu-f6cbb14dce48bc4ae112a7d5ae2bbca476d3457e.tar
yuzu-f6cbb14dce48bc4ae112a7d5ae2bbca476d3457e.tar.gz
yuzu-f6cbb14dce48bc4ae112a7d5ae2bbca476d3457e.tar.bz2
yuzu-f6cbb14dce48bc4ae112a7d5ae2bbca476d3457e.tar.lz
yuzu-f6cbb14dce48bc4ae112a7d5ae2bbca476d3457e.tar.xz
yuzu-f6cbb14dce48bc4ae112a7d5ae2bbca476d3457e.tar.zst
yuzu-f6cbb14dce48bc4ae112a7d5ae2bbca476d3457e.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/k_thread.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/kernel/k_thread.h b/src/core/hle/kernel/k_thread.h
index cc427f6cf..86d4b7c55 100644
--- a/src/core/hle/kernel/k_thread.h
+++ b/src/core/hle/kernel/k_thread.h
@@ -553,8 +553,8 @@ public:
return wait_reason_for_debugging;
}
- [[nodiscard]] ThreadType GetThreadTypeForDebugging() const {
- return thread_type_for_debugging;
+ [[nodiscard]] ThreadType GetThreadType() const {
+ return thread_type;
}
void SetWaitObjectsForDebugging(const std::span<KSynchronizationObject*>& objects) {
@@ -753,12 +753,12 @@ private:
// For emulation
std::shared_ptr<Common::Fiber> host_context{};
bool is_single_core{};
+ ThreadType thread_type{};
// For debugging
std::vector<KSynchronizationObject*> wait_objects_for_debugging;
VAddr mutex_wait_address_for_debugging{};
ThreadWaitReasonForDebugging wait_reason_for_debugging{};
- ThreadType thread_type_for_debugging{};
public:
using ConditionVariableThreadTreeType = ConditionVariableThreadTree;