summaryrefslogtreecommitdiff
path: root/Kernel/Syscalls
AgeCommit message (Expand)Author
2022-10-14Kernel: Add support for the FAT32 filesystemUndefine
2022-10-14Kernel: Read version and git commit hash from baked-in version infokleines Filmröllchen
2022-10-14Kernel: Move sys$uname to use TypedTransferkleines Filmröllchen
2022-10-03Kernel: Do not require 'proc' promise in getsid() and getpgid()Timothy Flynn
2022-09-20Kernel: Move PCSpeaker code to the x86-specific architecture directoryLiav A
2022-09-14Everywhere: Fix a variety of typosBrian Gianforcaro
2022-08-24Kernel: Don't wrap AddressSpace's RegionTree in SpinlockProtectedAndreas Kling
2022-08-24Kernel: Make file-backed memory regions remember description permissionsAndreas Kling
2022-08-24Kernel: Simplify the File memory-mapping APIAndreas Kling
2022-08-24Kernel: Wrap process address spaces in SpinlockProtectedAndreas Kling
2022-08-24Kernel: Wrap RegionTree objects in SpinlockProtectedAndreas Kling
2022-08-23Kernel: Remove big lock from sys$socketJames Bellamy
2022-08-23Kernel: Fix boot profilingSamuel Bowman
2022-08-22Kernel: Make sys$utime() and sys$utimensat() not take the big lockAndreas Kling
2022-08-22Kernel: Make sys$mknod() not take the big lockAndreas Kling
2022-08-22Kernel: Use Process::credentials() and remove user ID/group ID helpersAnthony Iacono
2022-08-21Kernel: Make sys$recvfrom() with MSG_DONTWAIT not so racyAndreas Kling
2022-08-21Kernel: Make Socket::connect() take credentials as inputAndreas Kling
2022-08-21Kernel: Make Socket::bind() take credentials as inputAndreas Kling
2022-08-21Kernel: Make File::{chown,chmod} take credentials as inputAndreas Kling
2022-08-21Kernel: Make VirtualFileSystem functions take credentials as inputAndreas Kling
2022-08-21Kernel: Make sys$getppid() not take the big lockAndreas Kling
2022-08-21Kernel: Guard Process "protected data" with a spinlockAndreas Kling
2022-08-21Kernel: Use RefPtr instead of LockRefPtr for CustodyAndreas Kling
2022-08-21Kernel/Syscall: Make anon_create to not use Process::allocate_fd methodLiav A
2022-08-20Kernel: Get GID from credentials object in sys$setgroups()Andreas Kling
2022-08-20Kernel+LibC: Enforce a limit on the number of supplementary group IDsAndreas Kling
2022-08-20Kernel: Mark syscalls that get/set user/group ID as not needing big lockAndreas Kling
2022-08-20Kernel: Add Credentials to hold a set of user and group IDsAndreas Kling
2022-08-20Kernel: Make self-contained locking smart pointers their own classesAndreas Kling
2022-08-18Kernel: Make sys$anon_create() allocate physical pages immediatelyAndreas Kling
2022-08-18Kernel: Fix TOCTOU in sys$unveil()Andreas Kling
2022-08-18Kernel: Don't do path resolution in sys$chdir() while holding spinlockAndreas Kling
2022-08-18Kernel: Make sys$unveil() not take the big process lockSamuel Bowman
2022-08-17Kernel: Require semicolon after VERIFY_{NO_,}PROCESS_BIG_LOCK_ACQUIREDLinus Groh
2022-08-16Kernel: Make sys$socketpair() not take the big lockAndreas Kling
2022-08-16Kernel: Only lock file descriptor table once in sys$pipe()Andreas Kling
2022-08-16Kernel: Don't leak file descriptors in sys$pipe()Andreas Kling
2022-08-16Kernel: Make sys$pipe() not take the big lockAndreas Kling
2022-08-16Kernel: Remove unnecessary TOCTOU bug in sys$pipe()Andreas Kling
2022-08-15Kernel: Leak a ref() on the new Process ASAP in sys$fork()Andreas Kling
2022-08-10Kernel: Validate the sys$alarm signal send always succeedsBrian Gianforcaro
2022-07-27Everywhere: Make the codebase more architecture awareUndefine
2022-07-25Kernel/LibC: Implement posix syscall clock_getres()zzLinus
2022-07-22Kernel+LibC: Don't hardcode the maximum signal number everywhereTim Schumacher
2022-07-21Kernel: Support F_SETLKW in fcntlIdan Horowitz
2022-07-21Kernel: Clean up sys$futex and add support for cross-process futexesIdan Horowitz
2022-07-21Kernel: Propagate OOM conditions out of sys$futexIdan Horowitz
2022-07-21Kernel: Remove the Socket::{protocol,}connect ShouldBlock argumentIdan Horowitz
2022-07-15Kernel: Try to set [cm]time in Inode::did_modify_contentsHendiadyoin1