Kernel: Fix scheduler thread counter

I was actually never incrementing the counter :D
This commit is contained in:
Bananymous 2024-08-10 18:16:00 +03:00
parent 58a3a480b9
commit 09a527fb12
1 changed files with 2 additions and 0 deletions

View File

@ -361,6 +361,8 @@ namespace Kernel
else
m_block_queue.add_thread_with_wake_time(node);
m_thread_count++;
Processor::set_interrupt_state(state);
}