Kernel: Make TTY write lock a mutex instead of a spinlock

The mutex could not be locked while processing ANSI DGR in VTTY
This commit is contained in:
2026-05-16 23:52:28 +03:00
parent d081655913
commit 6e95519acc
3 changed files with 14 additions and 16 deletions

View File

@@ -105,7 +105,7 @@ namespace Kernel
protected:
Mutex m_mutex;
RecursiveSpinLock m_write_lock;
Mutex m_write_lock;
ThreadBlocker m_write_blocker;
};