summaryrefslogtreecommitdiff
path: root/Kernel/Tasks
diff options
context:
space:
mode:
authorTom <tomut@yahoo.com>2020-12-07 21:29:41 -0700
committerAndreas Kling <kling@serenityos.org>2020-12-12 21:28:12 +0100
commitda5cc34ebbdfcc5b37815d369fe0c0931df54c90 (patch)
tree21b1bf721a5dce58a0ea652cee8d05d74884f002 /Kernel/Tasks
parent0918d8b1f8bae11a2ef97c79564a7e7c9a394eb5 (diff)
downloadserenity-da5cc34ebbdfcc5b37815d369fe0c0931df54c90.zip
Kernel: Fix some issues related to fixes and block conditions
Fix some problems with join blocks where the joining thread block condition was added twice, which lead to a crash when trying to unblock that condition a second time. Deferred block condition evaluation by File objects were also not properly keeping the File object alive, which lead to some random crashes and corruption problems. Other problems were caused by the fact that the Queued state didn't handle signals/interruptions consistently. To solve these issues we remove this state entirely, along with Thread::wait_on and change the WaitQueue into a BlockCondition instead. Also, deliver signals even if there isn't going to be a context switch to another thread. Fixes #4336 and #4330
Diffstat (limited to 'Kernel/Tasks')
-rw-r--r--Kernel/Tasks/FinalizerTask.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Tasks/FinalizerTask.cpp b/Kernel/Tasks/FinalizerTask.cpp
index 8b2574b62c..b84af218c7 100644
--- a/Kernel/Tasks/FinalizerTask.cpp
+++ b/Kernel/Tasks/FinalizerTask.cpp
@@ -36,7 +36,7 @@ void FinalizerTask::spawn()
finalizer_thread, "FinalizerTask", [](void*) {
Thread::current()->set_priority(THREAD_PRIORITY_LOW);
for (;;) {
- Thread::current()->wait_on(*g_finalizer_wait_queue, "FinalizerTask");
+ g_finalizer_wait_queue->wait_on(nullptr, "FinalizerTask");
if (g_finalizer_has_work.exchange(false, AK::MemoryOrder::memory_order_acq_rel) == true)
Thread::finalize_dying_threads();