Add a basic scheduler with threads #18

Merged
asleepymoon merged 19 commits from threads into restart 2022-12-07 16:11:59 +00:00
2 changed files with 8 additions and 1 deletions
Showing only changes of commit 56205a4a2f - Show all commits

View File

@ -127,3 +127,8 @@ namespace Timer
arch_init();
}
}
bool should_invoke_scheduler()
{
return (timer_ticks % ARCH_TIMER_FREQ) == 0;
}

View File

@ -35,3 +35,5 @@ namespace Timer
void arch_init();
void init();
}
bool should_invoke_scheduler();