index
:
serenity
master
topic/trivial_docs
The Serenity Operating System 🐞
cos
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Kernel
/
WaitQueue.cpp
Age
Commit message (
Expand
)
Author
2021-08-24
Kernel: Don't register thread as custom data for WaitQueueBlocker
Andreas Kling
2021-08-23
Kernel: Remove unused WaitQueue::should_block(bool)
Andreas Kling
2021-08-23
Kernel: Rename QueueBlocker => WaitQueueBlocker
Andreas Kling
2021-08-23
Kernel: Rename BlockerSet::unblock() to something more accurate
Andreas Kling
2021-08-22
Kernel: Rename ScopedSpinlock => SpinlockLocker
Andreas Kling
2021-08-22
Kernel: Rename SpinLock => Spinlock
Andreas Kling
2021-04-29
Everywhere: Use "the SerenityOS developers." in copyright headers
Linus Groh
2021-04-22
Everything: Move to SPDX license identifiers in all files.
Brian Gianforcaro
2021-02-23
Everywhere: Rename ASSERT => VERIFY
Andreas Kling
2021-02-08
Everywhere: Replace dbgln<flag>(...) with dbgln_if(flag, ...)
AnotherTest
2021-01-26
Meta: Split debug defines into multiple headers.
asynts
2021-01-25
Kernel: Fix some race conditions with Lock and waiting/waking threads
Tom
2021-01-25
Everywhere: Debug macros instead of constexpr.
asynts
2021-01-22
Everywhere: Replace a bundle of dbg with dbgln.
asynts
2021-01-22
Everywhere: Fix typos
Linus Groh
2021-01-17
Kernel: Some futex improvements
Tom
2020-12-31
Everywhere: Fix more typos
Luke
2020-12-30
Kernel: Consolidate the various BlockCondition::unblock variants
Tom
2020-12-16
Kernel: Fix Lock race causing infinite spinning between two threads
Tom
2020-12-12
Kernel: Fix some issues related to fixes and block conditions
Tom
2020-09-25
Meta+Kernel: Make clang-format-10 clean
Ben Wiederhake
2020-08-06
Kernel: Dequeue dying threads from WaitQueue
Tom
2020-07-06
Kernel: Enhance WaitQueue to remember pending wakes
Tom
2020-07-06
Kernel: Add a SpinLock to the WaitQueue
Tom
2020-07-03
Kernel: Fix signal delivery
Tom
2020-07-01
Kernel: Implement software context switching and Processor structure
Tom
2020-04-26
Kernel: Implement FUTEX_WAKE of arbitrary count.
Brian Gianforcaro
2020-02-26
Kernel: Allow process with multiple threads to call exec and exit
Cristian-Bogdan SIRB
2020-02-16
Kernel: Move all code into the Kernel namespace
Andreas Kling
2020-01-18
Meta: Add license header to source files
Andreas Kling
2020-01-12
Kernel: Fix Lock racing to the WaitQueue
Andreas Kling
2019-12-22
Kernel: Use IntrusiveList to make WaitQueue allocation-free :^)
Andreas Kling
2019-12-08
Kernel: Break out of the idle loop on WaitQueue wake instead of on IRQ
Andreas Kling
2019-12-01
Kernel: Use a dedicated thread state for wait-queued threads
Andreas Kling
2019-12-01
Kernel: Add a WaitQueue for Thread queueing/waking and use it for Lock
Andreas Kling