diff options
| author | 2018-05-07 22:03:48 -0400 | |
|---|---|---|
| committer | 2018-05-10 19:34:52 -0400 | |
| commit | e6671190a5994e5154fc845a1152577f1be22133 (patch) | |
| tree | 1af5d22a7b2f1ff34d8dd3d7d0b4ed2cba25913a /src | |
| parent | thread: Initialize ideal_core and mask members. (diff) | |
| download | yuzu-e6671190a5994e5154fc845a1152577f1be22133.tar.gz yuzu-e6671190a5994e5154fc845a1152577f1be22133.tar.xz yuzu-e6671190a5994e5154fc845a1152577f1be22133.zip | |
wait_tree: Add ideal core and affinity mask.
Diffstat (limited to 'src')
| -rw-r--r-- | src/yuzu/debugger/wait_tree.cpp | 2 |
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 { | |||
| 248 | } | 248 | } |
| 249 | 249 | ||
| 250 | list.push_back(std::make_unique<WaitTreeText>(tr("processor = %1").arg(processor))); | 250 | list.push_back(std::make_unique<WaitTreeText>(tr("processor = %1").arg(processor))); |
| 251 | list.push_back(std::make_unique<WaitTreeText>(tr("ideal core = %1").arg(thread.ideal_core))); | ||
| 252 | list.push_back(std::make_unique<WaitTreeText>(tr("affinity mask = %1").arg(thread.mask))); | ||
| 251 | list.push_back(std::make_unique<WaitTreeText>(tr("thread id = %1").arg(thread.GetThreadId()))); | 253 | list.push_back(std::make_unique<WaitTreeText>(tr("thread id = %1").arg(thread.GetThreadId()))); |
| 252 | list.push_back(std::make_unique<WaitTreeText>(tr("priority = %1(current) / %2(normal)") | 254 | list.push_back(std::make_unique<WaitTreeText>(tr("priority = %1(current) / %2(normal)") |
| 253 | .arg(thread.current_priority) | 255 | .arg(thread.current_priority) |