Kernel: Reads from PS/2 keyboard and mouse can be terminated

This commit is contained in:
2024-01-05 12:13:44 +02:00
parent 41ae05dd6e
commit f0cf54e194
3 changed files with 5 additions and 3 deletions

View File

@@ -35,7 +35,7 @@ namespace Kernel::Input
uint8_t m_mouse_id { 0x00 };
uint8_t m_button_mask { 0x00 };
BAN::CircularQueue<MouseEvent, 25> m_event_queue;
BAN::CircularQueue<MouseEvent, 128> m_event_queue;
Semaphore m_semaphore;