summaryrefslogtreecommitdiff
path: root/Kernel
AgeCommit message (Expand)Author
2020-08-10Kernel: Use Userspace<T> for the module_load syscallBrian Gianforcaro
2020-08-10Kernel: Use Userspace<T> for the getrandom syscallBrian Gianforcaro
2020-08-10Kernel: Use Userspace<T> for the shbuf_get syscallBrian Gianforcaro
2020-08-10Kernel: Use Userspace<T> for the get_thread_name syscallBrian Gianforcaro
2020-08-10Kernel: Use Userspace<T> for the set_thread_name syscallBrian Gianforcaro
2020-08-10Kernel: Use Userspace<T> for the connect syscallBrian Gianforcaro
2020-08-10Kernel: Use Userspace<T> for the accept syscallBrian Gianforcaro
2020-08-10Kernel: Use Userspace<T> for the bind syscall, and implementationBrian Gianforcaro
2020-08-10Kernel: Use Userspace<T> for the chmod syscallBrian Gianforcaro
2020-08-10Kernel: Use Userspace<T> for the umount syscallBrian Gianforcaro
2020-08-10Kernel: Use Userspace<T> for the unlink syscallBrian Gianforcaro
2020-08-10Kernel: Use Userspace<T> for the sigpending syscallBrian Gianforcaro
2020-08-10Kernel: Use Userspace<T> for the sigprocmask syscallBrian Gianforcaro
2020-08-10Kernel: Use Userspace<T> for the fstat syscallBrian Gianforcaro
2020-08-10Kernel: Use Userspace<T> for the uname syscallBrian Gianforcaro
2020-08-10Kernel: Use Userspace<T> for the sethostname syscallBrian Gianforcaro
2020-08-10Kernel: Use Userspace<T> for the gethostname syscallBrian Gianforcaro
2020-08-10Kernel: Use Userspace<T> for the clock_settime syscallBrian Gianforcaro
2020-08-10Kernel: Modifiy clock_settime timespec argument to constBrian Gianforcaro
2020-08-10Kernel: Use Userspace<T> for the clock_gettime syscallBrian Gianforcaro
2020-08-10Kernel: Use Userspace<T> for the getresgid syscallBrian Gianforcaro
2020-08-10Kernel: Use Userspace<T> for the getresuid syscallBrian Gianforcaro
2020-08-10Kernel: Use Userspace<T> for the times syscallBrian Gianforcaro
2020-08-10Kernel: Use Userspace<T> for the getgroups syscallBrian Gianforcaro
2020-08-10Kernel: Use Userspace<T> for the setgroups syscallBrian Gianforcaro
2020-08-10Kernel: Use Userspace<T> for the execve syscallBrian Gianforcaro
2020-08-10Kernel: Fix PID/TID confusion in send_signalBen Wiederhake
2020-08-10Kernel: More PID/TID typingBen Wiederhake
2020-08-10Kernel: PID/PGID typingBen Wiederhake
2020-08-10Kernel: PID/TID typingBen Wiederhake
2020-08-10Kernel: Mark MSIHandler as finalBrian Gianforcaro
2020-08-09LibELF+Lagom: Work towards getting LibELF in LagomNico Weber
2020-08-09AK: Add a GenericLexer and extend the JsonParser with it (#2696)Benoît Lormeau
2020-08-09Kernel: Decorate KResult and KResultOr<T> methods with [[nodiscard]]Brian Gianforcaro
2020-08-09Kernel: Fix my result propagation bug @BenWiederhake spottedBrian Gianforcaro
2020-08-07Kernel: Use Userspace<T> for the realpath syscallBrian Gianforcaro
2020-08-07Kernel: Use Userspace<T> for the getsockopt syscall and Socket interfaceBrian Gianforcaro
2020-08-07Kernel: Use Userspace<T> for the setsockopt syscallBrian Gianforcaro
2020-08-07Kernel: Use Userspace<T> for the getsockname syscallBrian Gianforcaro
2020-08-07Kernel: Use Userspace<T> for the getpeername syscallBrian Gianforcaro
2020-08-07Kernel: Use Userspace<T> for the chown syscallBrian Gianforcaro
2020-08-07Kernel: Use Userspace<T> for the mount syscallBrian Gianforcaro
2020-08-06ProcFS: Expose the current kernel keymap as /proc/keymapValtteri Koskivuori
2020-08-06Kernel+LibKeyboard: Store the keymap name when setting system keymapValtteri Koskivuori
2020-08-06AK+Kernel+LibC: Add vdbgprintf()Andreas Kling
2020-08-06Kernel: Store TTY's foreground process as a WeakPtr<Process>Andreas Kling
2020-08-06Kernel: Send a SIGCHLD to the parent upon suspension of a processAnotherTest
2020-08-06Refactor: Expose const_cast by removing ByteBuffer::warp(const void*, size_t)asynts
2020-08-06Kernel: Partial usage of Userspace<T> for the poll syscallBrian Gianforcaro
2020-08-06Kernel: Dequeue dying threads from WaitQueueTom