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
/
Syscalls
/
select.cpp
Age
Commit message (
Expand
)
Author
2021-12-12
Kernel: Remove sys$select() syscall
Jean-Baptiste Boric
2021-12-12
Kernel: Split off sys$poll() into Syscalls/poll.cpp
Jean-Baptiste Boric
2021-12-05
Kernel: Add support for the POLLWRBAND poll event
Idan Horowitz
2021-11-10
AK: Make Vector::try_* functions return ErrorOr<void>
Andreas Kling
2021-11-08
Kernel: Replace KResult and KResultOr<T> with Error and ErrorOr<T>
Andreas Kling
2021-09-07
Kernel: Rename file_description(fd) => open_file_description(fd)
Andreas Kling
2021-09-07
Kernel: Rename FileDescription => OpenFileDescription
Andreas Kling
2021-09-07
Kernel: Make copy_time_from_user() helpers use KResultOr<Time>
Andreas Kling
2021-09-05
Kernel: Make file description lookup return KResultOr
Andreas Kling
2021-09-05
Kernel: Use copy_typed_from_user<T> for fetching syscall parameters
Andreas Kling
2021-09-05
Kernel: Make copy_{from,to}_user() return KResult and use TRY()
Andreas Kling
2021-07-20
Kernel: Annotate all syscalls with VERIFY_PROCESS_BIG_LOCK_ACQUIRED
Brian Gianforcaro
2021-07-16
AK+Kernel: Implement and use EnumBits has_any_flag()
Timothy
2021-07-04
Everywhere: Fix incorrect usages of AK::Checked
Idan Horowitz
2021-06-29
Kernel: Don't copy a Vector<FileDescriptionAndFlags>
Liav A
2021-06-28
Kernel: Fix the return type for syscalls
Gunnar Beutner
2021-05-19
Kernel: Avoid an allocation in sys$poll
Gunnar Beutner
2021-04-29
Kernel: Harden sys$select Vector usage against OOM.
Brian Gianforcaro
2021-04-29
Kernel: Harden sys$poll Vector usage against OOM.
Brian Gianforcaro
2021-04-28
Kernel: Avoid overrunning the user-specified buffers in select()
Gunnar Beutner
2021-04-22
Everything: Move to SPDX license identifiers in all files.
Brian Gianforcaro
2021-03-08
Kernel: Add bitwise operators for Thread::FileBlocker::BlockFlags enum
Brian Gianforcaro
2021-03-03
Kernel: Avoid transient kmalloc heap allocations in sys$select()
Andreas Kling
2021-03-02
Kernel: Make Thread use AK::Time internally
Ben Wiederhake
2021-03-02
Kernel: Sanitize all user-supplied timeval's/timespec's
Ben Wiederhake
2021-03-01
Kernel: Use Userspace<T> in sys$select()
Andreas Kling
2021-03-01
Kernel: Make all syscall functions return KResultOr<T>
Andreas Kling
2021-02-23
Everywhere: Rename ASSERT => VERIFY
Andreas Kling
2021-02-21
Kernel: Use already computed nfds_checked value when copying from user mode.
Brian Gianforcaro
2021-02-14
Kernel: Avoid magic number in sys$poll
Ben Wiederhake
2021-02-13
Kernel: Limit the number of file descriptors sys$poll() can handle
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
Everywhere: Debug macros instead of constexpr.
asynts
2021-01-22
Everywhere: Replace a bundle of dbg with dbgln.
asynts
2021-01-17
Kernel: Remove a bunch of no-longer-necessary SmapDisablers
Andreas Kling
2021-01-11
Everywhere: Replace a bundle of dbg with dbgln.
asynts
2021-01-09
Everywhere: Replace a bundle of dbg with dbgln.
asynts
2020-12-20
Kernel: Silence debug spam about select() being interrupted
Andreas Kling
2020-11-30
Kernel: Move block condition evaluation out of the Scheduler
Tom
2020-11-30
Kernel: Move some time related code from Scheduler into TimeManagement
Tom
2020-09-25
Meta+Kernel: Make clang-format-10 clean
Ben Wiederhake
2020-09-13
Kernel: Make copy_to/from_user safe and remove unnecessary checks
Tom
2020-09-09
Kernel: Keep signal state in sync
Tom
2020-08-30
Kernel: Unbreak building with extra debug macros, part 1
Ben Wiederhake
2020-08-06
Kernel: Partial usage of Userspace<T> for the poll syscall
Brian Gianforcaro
2020-08-03
Kernel: Consolidate timeout logic
Tom
2020-07-30
Kernel: Move syscall implementations out of Process.cpp
Andreas Kling