diff --git a/Kernel/Locking/Mutex.cpp b/Kernel/Locking/Mutex.cpp index 19efa2b7da..45af124635 100644 --- a/Kernel/Locking/Mutex.cpp +++ b/Kernel/Locking/Mutex.cpp @@ -242,9 +242,6 @@ void Mutex::unblock_waiters(Mode previous_mode) VERIFY(m_mode == Mode::Unlocked); m_blocked_thread_lists.with([&](auto& lists) { - if (lists.exclusive.is_empty() && lists.shared.is_empty()) - return; - auto unblock_shared = [&]() { if (lists.shared.is_empty()) return false;