mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-07-08 00:02:58 +12:00
Add thread debugger
This commit is contained in:
parent
228068901b
commit
9932e58bf0
10 changed files with 172 additions and 14 deletions
|
@ -1,3 +1,4 @@
|
|||
#include <algorithm>
|
||||
#include <bit>
|
||||
#include <cassert>
|
||||
#include <cstring>
|
||||
|
@ -697,3 +698,18 @@ bool Kernel::shouldWaitOnObject(KernelObject* object) {
|
|||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
std::vector<Thread> Kernel::getMainProcessThreads() {
|
||||
// Sort the thread indices so that they appear nicer in the debugger
|
||||
auto indices = threadIndices;
|
||||
std::sort(indices.begin(), indices.end());
|
||||
|
||||
std::vector<Thread> ret;
|
||||
ret.reserve(indices.size());
|
||||
|
||||
for (const auto& index : indices) {
|
||||
ret.push_back(threads[index]);
|
||||
}
|
||||
|
||||
return ret;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue