Kernel: PS2Controller uses RecursiveSpinLock so timeouts don't panic

This commit is contained in:
2024-03-15 13:45:44 +02:00
parent 42469b83fe
commit 48ea9e1c1d

View File

@@ -64,7 +64,7 @@ namespace Kernel::Input
BAN::CircularQueue<Command, 128> m_command_queue;
uint64_t m_command_send_time { 0 };
SpinLock m_command_lock;
RecursiveSpinLock m_command_lock;
};
}