summaryrefslogtreecommitdiff
path: root/Kernel/WaitQueue.cpp
AgeCommit message (Expand)Author
2021-08-22Kernel: Rename ScopedSpinlock => SpinlockLockerAndreas Kling
2021-08-22Kernel: Rename SpinLock => SpinlockAndreas Kling
2021-04-29Everywhere: Use "the SerenityOS developers." in copyright headersLinus Groh
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
2021-02-23Everywhere: Rename ASSERT => VERIFYAndreas Kling
2021-02-08Everywhere: Replace dbgln<flag>(...) with dbgln_if(flag, ...)AnotherTest
2021-01-26Meta: Split debug defines into multiple headers.asynts
2021-01-25Kernel: Fix some race conditions with Lock and waiting/waking threadsTom
2021-01-25Everywhere: Debug macros instead of constexpr.asynts
2021-01-22Everywhere: Replace a bundle of dbg with dbgln.asynts
2021-01-22Everywhere: Fix typosLinus Groh
2021-01-17Kernel: Some futex improvementsTom
2020-12-31Everywhere: Fix more typosLuke
2020-12-30Kernel: Consolidate the various BlockCondition::unblock variantsTom
2020-12-16Kernel: Fix Lock race causing infinite spinning between two threadsTom
2020-12-12Kernel: Fix some issues related to fixes and block conditionsTom
2020-09-25Meta+Kernel: Make clang-format-10 cleanBen Wiederhake
2020-08-06Kernel: Dequeue dying threads from WaitQueueTom
2020-07-06Kernel: Enhance WaitQueue to remember pending wakesTom
2020-07-06Kernel: Add a SpinLock to the WaitQueueTom
2020-07-03Kernel: Fix signal deliveryTom
2020-07-01Kernel: Implement software context switching and Processor structureTom
2020-04-26Kernel: Implement FUTEX_WAKE of arbitrary count.Brian Gianforcaro
2020-02-26Kernel: Allow process with multiple threads to call exec and exitCristian-Bogdan SIRB
2020-02-16Kernel: Move all code into the Kernel namespaceAndreas Kling
2020-01-18Meta: Add license header to source filesAndreas Kling
2020-01-12Kernel: Fix Lock racing to the WaitQueueAndreas Kling
2019-12-22Kernel: Use IntrusiveList to make WaitQueue allocation-free :^)Andreas Kling
2019-12-08Kernel: Break out of the idle loop on WaitQueue wake instead of on IRQAndreas Kling
2019-12-01Kernel: Use a dedicated thread state for wait-queued threadsAndreas Kling
2019-12-01Kernel: Add a WaitQueue for Thread queueing/waking and use it for LockAndreas Kling