summaryrefslogtreecommitdiffstats
path: root/src/yuzu/debugger
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-05-08 04:03:48 +0200
committerbunnei <bunneidev@gmail.com>2018-05-11 01:34:52 +0200
commite6671190a5994e5154fc845a1152577f1be22133 (patch)
tree1af5d22a7b2f1ff34d8dd3d7d0b4ed2cba25913a /src/yuzu/debugger
parentthread: Initialize ideal_core and mask members. (diff)
downloadyuzu-e6671190a5994e5154fc845a1152577f1be22133.tar
yuzu-e6671190a5994e5154fc845a1152577f1be22133.tar.gz
yuzu-e6671190a5994e5154fc845a1152577f1be22133.tar.bz2
yuzu-e6671190a5994e5154fc845a1152577f1be22133.tar.lz
yuzu-e6671190a5994e5154fc845a1152577f1be22133.tar.xz
yuzu-e6671190a5994e5154fc845a1152577f1be22133.tar.zst
yuzu-e6671190a5994e5154fc845a1152577f1be22133.zip
Diffstat (limited to 'src/yuzu/debugger')
-rw-r--r--src/yuzu/debugger/wait_tree.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/yuzu/debugger/wait_tree.cpp b/src/yuzu/debugger/wait_tree.cpp
index a5da98d23..01f9d9008 100644
--- a/src/yuzu/debugger/wait_tree.cpp
+++ b/src/yuzu/debugger/wait_tree.cpp
@@ -248,6 +248,8 @@ std::vector<std::unique_ptr<WaitTreeItem>> WaitTreeThread::GetChildren() const {
}
list.push_back(std::make_unique<WaitTreeText>(tr("processor = %1").arg(processor)));
+ list.push_back(std::make_unique<WaitTreeText>(tr("ideal core = %1").arg(thread.ideal_core)));
+ list.push_back(std::make_unique<WaitTreeText>(tr("affinity mask = %1").arg(thread.mask)));
list.push_back(std::make_unique<WaitTreeText>(tr("thread id = %1").arg(thread.GetThreadId())));
list.push_back(std::make_unique<WaitTreeText>(tr("priority = %1(current) / %2(normal)")
.arg(thread.current_priority)