Kernel: Mark Scheduler::start() as noreturn as appropriate

This commit is contained in:
Bananymous 2023-04-11 23:33:20 +03:00
parent 7010d8614f
commit 809eb2fe3e
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ namespace Kernel
static BAN::ErrorOr<void> initialize();
static Scheduler& get();
void start();
[[noreturn]] void start();
void reschedule();
void reschedule_if_idling();