summaryrefslogtreecommitdiff
path: root/userland/libc/sys
AgeCommit message (Collapse)Author
2024-04-29Kernel/IRC: Add setsockopt and move IRC client to use new socket interfaceAnton Kling
2024-04-18LibC: Fix compiler warningsAnton Kling
It can now compile with almost all compiler warnings turned on without producing any warnings.
2024-04-17Kernel/LibC: Add fstat() and remove stat() syscallAnton Kling
2024-03-25Random changesAnton Kling
2024-02-07Minor fixAnton Kling
2023-12-18Add untracked filesAnton Kling
2023-11-23Kernel/LibC: Add randomfill() syscall.Anton Kling
This syscall aims to fill the given buffer with cryptographically secure random data. If the syscall returns and does not cause a page fault it will **always** have filled the buffer with random data and never gives back any error value.
2023-11-23LibC: Reduce warnings in codeAnton Kling
2023-10-30Kernel/LibC/Networking: Be able to send UDP messagesAnton Kling
Now it can send UDP messages to a specific IP address and libc has enough to create a basic UDP ECHO server, that is kinda cool.
2023-10-23VFS/libc: Create a syscall for mkdir and add the function to libcAnton Kling
2023-10-22Move everything into a new repo.Anton Kling