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
/
Lock.h
Age
Commit message (
Expand
)
Author
2021-04-25
Kernel: Remove the now defunct `LOCKER(..)` macro.
Brian Gianforcaro
2021-04-25
Kernel: Remove the now defunct `RESTORE_LOCK(..)` macro.
Brian Gianforcaro
2021-04-25
Kernel: Utilize AK::SourceLocation for LOCK_DEBUG instrumentation.
Brian Gianforcaro
2021-04-22
Everything: Move to SPDX license identifiers in all files.
Brian Gianforcaro
2021-03-21
Kernel::CPU: Move headers into common directory
Hendiadyoin1
2021-02-28
Kernel: Use default con/de-structors
Ben Wiederhake
2021-02-23
Everywhere: Rename ASSERT => VERIFY
Andreas Kling
2021-02-15
Kernel: Mark Lock getters as [[nodiscard]]
Brian Gianforcaro
2021-01-25
Everywhere: Use CMake to generate AK/Debug.h.
asynts
2021-01-15
Kernel: Make Locker remember whether the lock is held
Tom
2021-01-04
Kernel: Specify default memory order for some non-synchronizing Atomics
Tom
2020-12-16
Kernel: Fix Lock race causing infinite spinning between two threads
Tom
2020-12-01
Kernel: Fix some problems with Thread::wait_on and Lock
Tom
2020-11-30
Kernel: Lock should keep a reference to whoever holds the lock
Tom
2020-04-30
AK: Add ALWAYS_INLINE, NEVER_INLINE and FLATTEN macros
Andreas Kling
2020-04-18
Kernel: Introduce shared locking mode
Sergey Bugaev
2020-02-26
Kernel: Allow process with multiple threads to call exec and exit
Cristian-Bogdan SIRB
2020-02-17
Kernel: Replace "current" with Thread::current and Process::current
Andreas Kling
2020-02-16
Kernel: Add forward declaration header
Andreas Kling
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-13
Kernel: Allow unlocking a held Lock with interrupts disabled
Andreas Kling
2019-12-26
Kernel: Add Lock::is_locked()
Andreas Kling
2019-12-01
Kernel: Add a WaitQueue for Thread queueing/waking and use it for Lock
Andreas Kling
2019-10-12
AK: Add Atomic.h
Tom
2019-07-29
Kernel: Move Lock code out-of-line.
Andreas Kling
2019-07-03
AK: Rename the common integer typedefs to make it obvious what they are.
Andreas Kling
2019-06-07
Kernel: Move i386.{cpp,h} => Arch/i386/CPU.{cpp,h}
Andreas Kling
2019-05-28
Add clang-format file
Robin Burchell
2019-05-16
Kernel: Simplify dump_backtrace() API for clients.
Andreas Kling
2019-05-14
Kernel: Have Lock dump backtrace on lock-while-interrupts-disabled error.
Andreas Kling
2019-04-17
Kernel: Lock::unlock_if_locked() should never donate to holder.
Andreas Kling
2019-04-01
Kernel: Add a blunt big process lock.
Andreas Kling
2019-03-23
Kernel: Introduce threads, and refactor everything in support of it.
Andreas Kling
2019-03-16
Move Lock from AK to Kernel, since it only works inside the kernel.
Andreas Kling