1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 05:47:34 +00:00

Kernel: Print scheduler state to the display console

This commit is contained in:
Liav A 2021-05-13 19:36:31 +03:00 committed by Andreas Kling
parent 20743e8aed
commit 99eab4667a
3 changed files with 5 additions and 2 deletions

View file

@ -26,6 +26,8 @@ public:
void switch_to(unsigned);
void initialize();
void switch_to_debug() { switch_to(1); }
NonnullRefPtr<VirtualConsole> first_tty() const { return m_consoles[0]; }
NonnullRefPtr<VirtualConsole> debug_tty() const { return m_consoles[1]; }