Kernel: Rename TimerHandler to SystemTimer

I changed SystemTimer to only handle the "best" supported timer
it can initialize.
This commit is contained in:
2023-08-04 16:06:47 +03:00
parent ca5a097ef5
commit c732297623
13 changed files with 34 additions and 34 deletions
+1 -1
View File
@@ -113,7 +113,7 @@ namespace Kernel
{
VERIFY_CLI();
uint64_t current_time = TimerHandler::get().ms_since_boot();
uint64_t current_time = SystemTimer::get().ms_since_boot();
while (!m_sleeping_threads.empty() && m_sleeping_threads.front().wake_time <= current_time)
{
Thread* thread = m_sleeping_threads.front().thread;