mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 14:15:41 +12:00
Add vector of timer handles
This commit is contained in:
parent
708b10c194
commit
1f7fc2274a
3 changed files with 3 additions and 1 deletions
|
@ -36,6 +36,7 @@ class Kernel {
|
|||
std::vector<KernelObject> objects;
|
||||
std::vector<Handle> portHandles;
|
||||
std::vector<Handle> mutexHandles;
|
||||
std::vector<Handle> timerHandles;
|
||||
|
||||
// Thread indices, sorted by priority
|
||||
std::vector<int> threadIndices;
|
||||
|
|
|
@ -148,6 +148,7 @@ void Kernel::reset() {
|
|||
}
|
||||
objects.clear();
|
||||
mutexHandles.clear();
|
||||
timerHandles.clear();
|
||||
portHandles.clear();
|
||||
threadIndices.clear();
|
||||
serviceManager.reset();
|
||||
|
|
|
@ -9,7 +9,7 @@ Handle Kernel::makeTimer(ResetType type) {
|
|||
Helpers::panic("Created pulse timer");
|
||||
}
|
||||
|
||||
// timerHandles.push_back(ret);
|
||||
timerHandles.push_back(ret);
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue