Browse Source

Kernel: Unbreak the LOCK_DEBUG build

Regressed with 68bf6db673e3a0070b5c47d7ab997d82d31e1526
Andreas Kling 3 years ago
parent
commit
5cd030568f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Kernel/Thread.cpp

+ 1 - 1
Kernel/Thread.cpp

@@ -495,7 +495,7 @@ void Thread::finalize()
     VERIFY(Thread::current() != this);
     VERIFY(Thread::current() != this);
 
 
 #if LOCK_DEBUG
 #if LOCK_DEBUG
-    VERIFY(!m_lock.is_locked_by_current_thread());
+    VERIFY(!m_lock.is_locked_by_current_processor());
     if (lock_count() > 0) {
     if (lock_count() > 0) {
         dbgln("Thread {} leaking {} Locks!", *this, lock_count());
         dbgln("Thread {} leaking {} Locks!", *this, lock_count());
         SpinlockLocker list_lock(m_holding_locks_lock);
         SpinlockLocker list_lock(m_holding_locks_lock);