summaryrefslogtreecommitdiff
path: root/userland/libc/include/syscall.h
AgeCommit message (Collapse)Author
2023-10-30Kernel/LibC: Add signals and support for custom signal handlers to processes.Anton 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-30Kernel/Networking/LibC: Add syscalls and libc functions for UDPAnton Kling
This allows a UDP server to be created in userland and read data. Currently it can't send data and is very very simplistic. Code is horrible and probably needs some fixing until it can be further built upon.
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