1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 02:27:43 +00:00

Kernel/aarch64: Implement Processor::check_invoke_scheduler()

This commit is contained in:
Timon Kruiper 2022-12-22 13:34:58 +01:00 committed by Andrew Kaster
parent f6f43fd65e
commit 993b7495ba
2 changed files with 10 additions and 1 deletions

View file

@ -279,6 +279,7 @@ private:
FlatPtr m_in_irq { 0 };
bool m_in_scheduler { false };
bool m_invoke_scheduler_async { false };
bool m_scheduler_initialized { false };
};
}