Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-08-06 | Kernel+LibKeyboard: Store the keymap name when setting system keymap | Valtteri Koskivuori | |
This way we can query the kernel to see which keymap is currently in use. | |||
2020-08-02 | Kernel: Use Userspace<T> in setkeymap syscall | Brian Gianforcaro | |
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. :^) |