Add vector of timer handles

This commit is contained in:
wheremyfoodat 2023-11-04 18:28:28 +02:00
parent 708b10c194
commit 1f7fc2274a
3 changed files with 3 additions and 1 deletions

View file

@ -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;