Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-01-18 | Kernel+LibC: Add _SC_TTY_NAME_MAX | Linus Groh | |
2020-09-27 | Kernel: Implement _SC_OPEN_MAX | Luke | |
2020-07-31 | Kernel: Add _SC_PAGESIZE to sysconf | Itamar | |
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-30 | Kernel: Move syscall implementations out of Process.cpp | Andreas 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. :^) |