ladybird/Kernel/Syscalls
Andreas Kling 949aef4aef Kernel: Move syscall implementations out of Process.cpp
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. :^)
2020-07-30 23:40:57 +02:00
..
access.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
alarm.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
beep.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
chdir.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
chmod.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
chown.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
chroot.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
clock.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
debug.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
dup.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
execve.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
exit.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
fcntl.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
fork.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
ftruncate.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
futex.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
get_dir_entries.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
get_stack_bounds.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
getrandom.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
getuid.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
hostname.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
ioctl.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
kill.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
link.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
lseek.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
mkdir.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
mknod.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
mmap.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
module.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
mount.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
open.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
perf_event.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
pipe.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
pledge.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
process.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
profiling.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
ptrace.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
purge.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
read.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
readlink.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
realpath.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
rename.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
rmdir.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
sched.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
select.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
sendfd.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
setkeymap.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
setpgid.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
setuid.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
shbuf.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
shutdown.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
sigaction.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
sleep.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
socket.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
stat.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
sync.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
sysconf.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
thread.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
times.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
ttyname.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
umask.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
uname.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
unlink.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
unveil.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
utime.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
waitid.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
watch_file.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00
write.cpp Kernel: Move syscall implementations out of Process.cpp 2020-07-30 23:40:57 +02:00