From e6671190a5994e5154fc845a1152577f1be22133 Mon Sep 17 00:00:00 2001 From: bunnei Date: Mon, 7 May 2018 22:03:48 -0400 Subject: [PATCH] wait_tree: Add ideal core and affinity mask. --- src/yuzu/debugger/wait_tree.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/yuzu/debugger/wait_tree.cpp b/src/yuzu/debugger/wait_tree.cpp index a5da98d23a..01f9d90080 100644 --- a/src/yuzu/debugger/wait_tree.cpp +++ b/src/yuzu/debugger/wait_tree.cpp @@ -248,6 +248,8 @@ std::vector> WaitTreeThread::GetChildren() const { } list.push_back(std::make_unique(tr("processor = %1").arg(processor))); + list.push_back(std::make_unique(tr("ideal core = %1").arg(thread.ideal_core))); + list.push_back(std::make_unique(tr("affinity mask = %1").arg(thread.mask))); list.push_back(std::make_unique(tr("thread id = %1").arg(thread.GetThreadId()))); list.push_back(std::make_unique(tr("priority = %1(current) / %2(normal)") .arg(thread.current_priority)