summaryrefslogtreecommitdiff
path: root/Kernel/Syscall.cpp
AgeCommit message (Expand)Author
2020-01-25Kernel: Clear ESI and EDI on syscall entryAndreas Kling
2020-01-19Kernel: Add fast-path for sys$gettid()Andreas Kling
2020-01-18Meta: Add license header to source filesAndreas Kling
2020-01-12Kernel: Dispatch pending signals when returning from a syscallAndreas Kling
2020-01-09Kernel: Rename {ss,esp}_if_crossRing to userspace_{ss,esp}Andreas Kling
2020-01-05Kernel: Start implementing x86 SMAP supportAndreas Kling
2020-01-03Kernel: Use get_fast_random() for the random syscall stack offsetAndreas Kling
2020-01-01Kernel: Add a random offset to kernel stacks upon syscall entryAndreas Kling
2019-12-15Kernel: Make separate kernel entry points for each PIC IRQAndreas Kling
2019-12-14Kernel: Tidy up kernel entry points a little bitAndreas Kling
2019-11-29Kernel: Disallow syscalls from writeable memoryAndreas Kling
2019-11-26Kernel: Make syscall counters and page fault counters per-threadAndreas Kling
2019-11-18Kernel: When userspaces calls a removed syscall, fail with ENOSYSAndreas Kling
2019-11-17Kernel+LibC: Remove the isatty() syscallAndreas Kling
2019-11-17Kernel: Implement some basic stack pointer validationAndreas Kling
2019-11-14Kernel: Unwind kernel stacks before dyingSergey Bugaev
2019-11-13LibPthread: Start working on a POSIX threading libraryAndreas Kling
2019-11-09Kernel: Clear the x86 DF flag when entering the kernelAndreas Kling
2019-11-09Kernel: Use a lookup table for syscallsAndreas Kling
2019-11-06Kernel: Simplify kernel entry points slightlyAndreas Kling
2019-11-06Kernel: Don't build with -mregparm=3Andreas Kling
2019-11-02Kernel+LibC: Implement clock_gettime() and clock_nanosleep()Andreas Kling
2019-10-13Kernel: Add a Linux-style getrandom syscallCalvin Buckley
2019-10-07Kernel: Add exception_code to RegisterDump.Drew Stratford
2019-09-13Kernel: Implement fchdir syscallMauri de Souza Nunes
2019-09-05Kernel: Use user stack for signal handlers.Drew Stratford
2019-08-25Kernel: Add realpath syscallRok Povsic
2019-08-17Kernel+LibC+Userland: Support mounting other kinds of filesystemsSergey Bugaev
2019-08-17Kernel: Added unmount ability to VFSJesse Buhagiar
2019-08-15Kernel+LibC: Add get_process_name() syscallAndreas Kling
2019-08-12Kernel+LibC+crash: Add mprotect() syscallAndreas Kling
2019-08-05Kernel+LibC: Support passing O_CLOEXEC to pipe()Sergey Bugaev
2019-08-02Kernel: mount system call (#396)Jesse
2019-07-29Kernel+ProcessManager: Let processes have an icon and show it in the table.Andreas Kling
2019-07-22Kernel: Add a mechanism for listening for changes to an inode.Andreas Kling
2019-07-21Kernel+LibC: Add a dbgputstr() syscall for sending strings to debug output.Andreas Kling
2019-07-21Kernel+LibC: Add a dbgputch() syscall and use it for userspace dbgprintf().Andreas Kling
2019-07-21Kernel+LibC: Add a dump_backtrace() syscall.Andreas Kling
2019-07-19Kernel: Only allow superuser to halt() the system (#342)Jesse
2019-07-19Kernel+Userland: Addd reboot syscall (#334)Jesse
2019-07-18SharedBuffer: Split the creation and share stepsRobin Burchell
2019-07-08Kernel: Have the open() syscall take an explicit path length parameter.Andreas Kling
2019-07-03AK: Rename the common integer typedefs to make it obvious what they are.Andreas Kling
2019-06-16Kernel/Userland: Add a halt syscall, and a shutdown binary to invoke itRobin Burchell
2019-06-07Kernel: Move i386.{cpp,h} => Arch/i386/CPU.{cpp,h}Andreas Kling
2019-06-07Kernel: Run clang-format on everything.Andreas Kling
2019-06-01Kernel: Add fchown() syscall.Andreas Kling
2019-05-30Kernel/LibC: Implement sched_* functionality to set/get process priorityRobin Burchell
2019-05-23Kernel: Return ENOSYS if an invalid syscall number is requested.Andreas Kling
2019-05-20Kernel: Add getpeername() syscall, and fix getsockname() behavior.Andreas Kling