Add a should_invoke_scheduler method

This commit is contained in:
apio 2022-12-07 12:15:30 +01:00 committed by Gitea
parent 986aa01948
commit bbfaa4645a
2 changed files with 8 additions and 1 deletions

View File

@ -126,4 +126,9 @@ namespace Timer
boot_timestamp = bootloader_time_to_unix(bootboot.datetime);
arch_init();
}
}
bool should_invoke_scheduler()
{
return (timer_ticks % ARCH_TIMER_FREQ) == 0;
}

View File

@ -34,4 +34,6 @@ namespace Timer
void arch_init();
void init();
}
}
bool should_invoke_scheduler();