Kernel: PS2Controller uses RecursiveSpinLock so timeouts don't panic

This commit is contained in:
Bananymous 2024-03-15 13:45:44 +02:00
parent 42469b83fe
commit 48ea9e1c1d
1 changed files with 1 additions and 1 deletions

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;
};
}