serenity/Kernel/Syscalls
Andreas Kling ce6e93d96b Kernel: Make sys$socketpair() not take the big lock
This system call mainly accesses the file descriptor table, and this is
already guarded by MutexProtected.
2022-08-16 20:43:23 +02:00
..
access.cpp
alarm.cpp Kernel: Validate the sys$alarm signal send always succeeds 2022-08-10 11:38:18 -04:00
anon_create.cpp
beep.cpp
chdir.cpp
chmod.cpp
chown.cpp Kernel: Remove big lock from sys$chown 2022-04-09 23:46:02 +02:00
clock.cpp Kernel/LibC: Implement posix syscall clock_getres() 2022-07-25 15:33:50 +02:00
debug.cpp
disown.cpp
dup2.cpp
emuctl.cpp
execve.cpp Everywhere: Make the codebase more architecture aware 2022-07-27 21:46:42 +00:00
exit.cpp
fallocate.cpp Kernel+LibC: Add posix_fallocate syscall 2022-07-15 12:42:43 +02:00
fcntl.cpp Kernel: Support F_SETLKW in fcntl 2022-07-21 16:39:22 +02:00
fork.cpp Kernel: Leak a ref() on the new Process ASAP in sys$fork() 2022-08-15 00:53:28 +02:00
fsync.cpp
ftruncate.cpp
futex.cpp Kernel: Clean up sys$futex and add support for cross-process futexes 2022-07-21 16:39:22 +02:00
get_dir_entries.cpp
get_stack_bounds.cpp
getrandom.cpp
getuid.cpp
hostname.cpp
inode_watcher.cpp
ioctl.cpp Kernel: Add FIOCLEX and FIONCLEX ioctls 2022-04-26 14:32:12 +02:00
keymap.cpp
kill.cpp Kernel: Implement InterruptDisabler using generic Processor functions 2022-06-02 13:14:12 +01:00
link.cpp Kernel: Remove big lock from sys$symlink 2022-04-09 23:46:02 +02:00
lseek.cpp
mkdir.cpp Kernel: Remove big lock from sys$mkdir 2022-04-09 23:46:02 +02:00
mknod.cpp
mmap.cpp Kernel: Try to set [cm]time in Inode::did_modify_contents 2022-07-15 12:42:43 +02:00
mount.cpp Kernel/FileSystem: Simplify even more the mount syscall 2022-05-29 19:31:02 +01:00
open.cpp Kernel: Don't check pledges or veil against code coverage data files 2022-05-02 01:46:18 +02:00
perf_event.cpp Everywhere: Use default StringView constructor over nullptr 2022-07-12 23:11:35 +02:00
pipe.cpp Kernel: Only lock file descriptor table once in sys$pipe() 2022-08-16 20:39:45 +02:00
pledge.cpp Everywhere: Add sv suffix to strings relying on StringView(char const*) 2022-07-12 23:11:35 +02:00
poll.cpp Kernel: Stop reporting POLLHUP exclusively when available in sys$poll 2022-07-10 14:24:34 +02:00
prctl.cpp
process.cpp Kernel: Remove big lock from sys$set_coredump_metadata 2022-04-09 21:51:16 +02:00
profiling.cpp
ptrace.cpp
purge.cpp
read.cpp Kernel: Properly define IOV_MAX 2022-05-05 20:47:38 +02:00
readlink.cpp
realpath.cpp
rename.cpp Kernel: Remove big lock from sys$rename 2022-04-09 23:46:02 +02:00
resource.cpp
rmdir.cpp Kernel: Remove big lock from sys$rmdir 2022-04-09 23:46:02 +02:00
sched.cpp Kernel: Mark sys$sched_{set,get}param() as not needing the big lock 2022-04-04 00:42:18 +02:00
sendfd.cpp Kernel: Mark sys$sendfd() and sys$recvfd() as not needing the big lock 2022-04-03 22:06:03 +02:00
setpgid.cpp Kernel: Implement InterruptDisabler using generic Processor functions 2022-06-02 13:14:12 +01:00
setuid.cpp
sigaction.cpp Kernel+LibC: Don't hardcode the maximum signal number everywhere 2022-07-22 10:07:15 -07:00
socket.cpp Kernel: Make sys$socketpair() not take the big lock 2022-08-16 20:43:23 +02:00
stat.cpp
statvfs.cpp Kernel: Remove big lock from sys$statvfs 2022-04-09 23:46:02 +02:00
sync.cpp
sysconf.cpp Kernel: Add sysconf for IOV_MAX 2022-06-19 09:05:35 +02:00
thread.cpp Kernel+LibC: Don't hardcode the maximum signal number everywhere 2022-07-22 10:07:15 -07:00
times.cpp
umask.cpp
uname.cpp Everywhere: Make the codebase more architecture aware 2022-07-27 21:46:42 +00:00
unlink.cpp Kernel+LibC+LibCore: Implement the unlinkat(2) syscall 2022-04-23 10:43:32 -07:00
unveil.cpp
utime.cpp
utimensat.cpp Kernel+LibC: Implement futimens(3) 2022-05-21 18:15:00 +02:00
waitid.cpp
write.cpp Kernel: Properly define IOV_MAX 2022-05-05 20:47:38 +02:00