forked from Bananymous/banan-os
Kernel: PS2Controller uses RecursiveSpinLock so timeouts don't panic
This commit is contained in:
parent
42469b83fe
commit
48ea9e1c1d
|
@ -64,7 +64,7 @@ namespace Kernel::Input
|
||||||
|
|
||||||
BAN::CircularQueue<Command, 128> m_command_queue;
|
BAN::CircularQueue<Command, 128> m_command_queue;
|
||||||
uint64_t m_command_send_time { 0 };
|
uint64_t m_command_send_time { 0 };
|
||||||
SpinLock m_command_lock;
|
RecursiveSpinLock m_command_lock;
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue