summaryrefslogtreecommitdiff
path: root/Kernel/Syscalls/sysconf.cpp
AgeCommit message (Collapse)Author
2021-01-18Kernel+LibC: Add _SC_TTY_NAME_MAXLinus Groh
2020-09-27Kernel: Implement _SC_OPEN_MAXLuke
2020-07-31Kernel: Add _SC_PAGESIZE to sysconfItamar
This unbreaks the gcc and binutils ports. Previously, when _SC_PAGESIZE was missing, these packages opted to use their own versions of getpagesize which made their build fail because of conflicting definitions of the function.
2020-07-30Kernel: Move syscall implementations out of Process.cppAndreas Kling
This is something I've been meaning to do for a long time, and here we finally go. This patch moves all sys$foo functions out of Process.cpp and into files in Kernel/Syscalls/. It's not exactly one syscall per file (although it could be, but I got a bit tired of the repetitive work here..) This makes hacking on individual syscalls a lot less painful since you don't have to rebuild nearly as much code every time. I'm also hopeful that this makes it easier to understand individual syscalls. :^)