We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b439166 commit c627a60Copy full SHA for c627a60
1 file changed
src/ProcessScheduler/Scheduler.cpp
@@ -139,6 +139,7 @@ int Scheduler::run()
139
if (_active) return 0;
140
141
uint8_t count = 0;
142
+ uint32_t start = getCurrTS();
143
for (uint8_t pLevel=0; pLevel < NUM_PRIORITY_LEVELS; pLevel++)
144
{
145
processQueue();
@@ -150,7 +151,6 @@ int Scheduler::run()
150
151
continue;
152
153
// find the highest priority process that needs to run
- uint32_t start = getCurrTS();
154
Process *torun = NULL;
155
156
// Search for the best process
0 commit comments