summaryrefslogtreecommitdiff
path: root/kernel/poll.c
AgeCommit message (Collapse)Author
2024-06-27Kernel: poll should exit early if events already existAnton Kling
In certain cases there is almost always something to read in which case setting up the list of file descriptors and switching context becomes very expensive.
2024-04-26Kernel/VFS: Change polling from variables to functionsAnton Kling
Instead of having to store state in variables functions are called to check the object directly.
2024-03-17stuffAnton Kling
2024-03-14random changes madeAnton Kling
2024-02-21Kerenel: Cleanup halt checking codeAnton Kling
2024-02-21New clang-format optionsAnton Kling
2024-02-19Kernel/VFS: Cleanup of file descriptor haltsAnton Kling
2024-02-17cleanupAnton Kling
2024-02-07Kernel: poll() should skip invalid file descriptorsAnton Kling
2024-02-07A lot of small changesAnton Kling
2023-11-21Kernel: Make poll() return number of file descriptors that had revent setAnton Kling
2023-10-31Meta: Move kernel and userland to their own folders.Anton Kling
This is to allow both the kernel and the userland to share certain header files and to make the folder structure a bit more clear.