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
/
DoubleBuffer.h
Age
Commit message (
Expand
)
Author
2022-04-01
Everywhere: Run clang-format
Idan Horowitz
2022-03-18
Kernel: Zero initialize DoubleBuffer::InnerBuffer::size
Brian Gianforcaro
2021-11-21
Kernel: Share code between DoubleBuffer's read() and peek()
Andreas Kling
2021-11-08
Kernel: Replace KResult and KResultOr<T> with Error and ErrorOr<T>
Andreas Kling
2021-09-07
Kernel: Make DoubleBuffer::try() return KResultOr
Andreas Kling
2021-09-07
Kernel: Remove redundant [[nodiscard]] on KResult return values
Andreas Kling
2021-08-22
Kernel+LibC: Implement FIONREAD ioctl
Peter Elliott
2021-08-07
Kernel: Move Mutex into Locking/
Jean-Baptiste Boric
2021-08-03
Kernel: Remove OOM unsafe DoubleBuffer constructor
Brian Gianforcaro
2021-08-03
Kernel: Add DoubleBuffer::try_create() factory method for OOM hardening
Brian Gianforcaro
2021-07-17
Kernel: Rename Lock to Mutex
Andreas Kling
2021-06-16
Kernel: Use KResultOr<size_t> for the DoubleBuffer class
Gunnar Beutner
2021-04-29
Kernel: Implement peek() function for DoubleBuffer
Justin
2021-04-22
Everything: Move to SPDX license identifiers in all files.
Brian Gianforcaro
2021-02-23
Everywhere: Rename ASSERT => VERIFY
Andreas Kling
2020-11-30
Kernel: Move block condition evaluation out of the Scheduler
Tom
2020-09-13
Kernel: Make copy_to/from_user safe and remove unnecessary checks
Tom
2020-08-04
Kernel: Make File::write() and File::read() return KResultOr<size_t>
Andreas Kling
2020-02-16
Kernel: Move all code into the Kernel namespace
Andreas Kling
2020-01-20
Kernel: Make DoubleBuffer use a KBuffer instead of kmalloc()ing
Andreas Kling
2020-01-18
Meta: Add license header to source files
Andreas Kling
2019-10-18
Revert "Kernel: Make DoubleBuffer use a KBuffer instead of kmalloc()ing"
Andreas Kling
2019-10-18
Kernel: Make DoubleBuffer use a KBuffer instead of kmalloc()ing
Andreas Kling
2019-07-03
AK: Rename the common integer typedefs to make it obvious what they are.
Andreas Kling
2019-05-02
Kernel: Assign Lock names in class member initializers.
Andreas Kling
2019-03-16
Move Lock from AK to Kernel, since it only works inside the kernel.
Andreas Kling
2019-02-25
Kernel: Make syscalls that take a buffer size use ssize_t instead of size_t.
Andreas Kling
2019-02-07
Kernel: When a lock is busy, donate remaining process ticks to lock holder.
Andreas Kling
2019-01-17
Rename SpinLock to Lock. It hasn't been a SpinLock for some time.
Andreas Kling
2019-01-15
Add internal locking to DoubleBuffer.
Andreas Kling
2019-01-15
Allow character devices to block write attempts until there is more space.
Andreas Kling
2018-12-21
Yet another pass of style fixes.
Andreas Kling
2018-12-03
Move DoubleBuffer to its own files.
Andreas Kling