Kernel: Fix PriorityMutex::try_lock()

Forgot to check this when I updated Mutex::try_lock()
This commit is contained in:
Bananymous 2024-04-18 01:36:15 +03:00
parent 30d12a76bc
commit a698f91db4
1 changed files with 1 additions and 0 deletions

View File

@ -103,6 +103,7 @@ namespace Kernel
ASSERT(m_lock_depth == 0);
}
m_lock_depth++;
return true;
}
void unlock()