summaryrefslogtreecommitdiff
path: root/Kernel/Syscalls/select.cpp
AgeCommit message (Expand)Author
2021-12-12Kernel: Remove sys$select() syscallJean-Baptiste Boric
2021-12-12Kernel: Split off sys$poll() into Syscalls/poll.cppJean-Baptiste Boric
2021-12-05Kernel: Add support for the POLLWRBAND poll eventIdan Horowitz
2021-11-10AK: Make Vector::try_* functions return ErrorOr<void>Andreas Kling
2021-11-08Kernel: Replace KResult and KResultOr<T> with Error and ErrorOr<T>Andreas Kling
2021-09-07Kernel: Rename file_description(fd) => open_file_description(fd)Andreas Kling
2021-09-07Kernel: Rename FileDescription => OpenFileDescriptionAndreas Kling
2021-09-07Kernel: Make copy_time_from_user() helpers use KResultOr<Time>Andreas Kling
2021-09-05Kernel: Make file description lookup return KResultOrAndreas Kling
2021-09-05Kernel: Use copy_typed_from_user<T> for fetching syscall parametersAndreas Kling
2021-09-05Kernel: Make copy_{from,to}_user() return KResult and use TRY()Andreas Kling
2021-07-20Kernel: Annotate all syscalls with VERIFY_PROCESS_BIG_LOCK_ACQUIREDBrian Gianforcaro
2021-07-16AK+Kernel: Implement and use EnumBits has_any_flag()Timothy
2021-07-04Everywhere: Fix incorrect usages of AK::CheckedIdan Horowitz
2021-06-29Kernel: Don't copy a Vector<FileDescriptionAndFlags>Liav A
2021-06-28Kernel: Fix the return type for syscallsGunnar Beutner
2021-05-19Kernel: Avoid an allocation in sys$pollGunnar Beutner
2021-04-29Kernel: Harden sys$select Vector usage against OOM.Brian Gianforcaro
2021-04-29Kernel: Harden sys$poll Vector usage against OOM.Brian Gianforcaro
2021-04-28Kernel: Avoid overrunning the user-specified buffers in select()Gunnar Beutner
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
2021-03-08Kernel: Add bitwise operators for Thread::FileBlocker::BlockFlags enumBrian Gianforcaro
2021-03-03Kernel: Avoid transient kmalloc heap allocations in sys$select()Andreas Kling
2021-03-02Kernel: Make Thread use AK::Time internallyBen Wiederhake
2021-03-02Kernel: Sanitize all user-supplied timeval's/timespec'sBen Wiederhake
2021-03-01Kernel: Use Userspace<T> in sys$select()Andreas Kling
2021-03-01Kernel: Make all syscall functions return KResultOr<T>Andreas Kling
2021-02-23Everywhere: Rename ASSERT => VERIFYAndreas Kling
2021-02-21Kernel: Use already computed nfds_checked value when copying from user mode.Brian Gianforcaro
2021-02-14Kernel: Avoid magic number in sys$pollBen Wiederhake
2021-02-13Kernel: Limit the number of file descriptors sys$poll() can handleAndreas Kling
2021-02-08Everywhere: Replace dbgln<flag>(...) with dbgln_if(flag, ...)AnotherTest
2021-01-26Meta: Split debug defines into multiple headers.asynts
2021-01-25Everywhere: Debug macros instead of constexpr.asynts
2021-01-22Everywhere: Replace a bundle of dbg with dbgln.asynts
2021-01-17Kernel: Remove a bunch of no-longer-necessary SmapDisablersAndreas Kling
2021-01-11Everywhere: Replace a bundle of dbg with dbgln.asynts
2021-01-09Everywhere: Replace a bundle of dbg with dbgln.asynts
2020-12-20Kernel: Silence debug spam about select() being interruptedAndreas Kling
2020-11-30Kernel: Move block condition evaluation out of the SchedulerTom
2020-11-30Kernel: Move some time related code from Scheduler into TimeManagementTom
2020-09-25Meta+Kernel: Make clang-format-10 cleanBen Wiederhake
2020-09-13Kernel: Make copy_to/from_user safe and remove unnecessary checksTom
2020-09-09Kernel: Keep signal state in syncTom
2020-08-30Kernel: Unbreak building with extra debug macros, part 1Ben Wiederhake
2020-08-06Kernel: Partial usage of Userspace<T> for the poll syscallBrian Gianforcaro
2020-08-03Kernel: Consolidate timeout logicTom
2020-07-30Kernel: Move syscall implementations out of Process.cppAndreas Kling