summaryrefslogtreecommitdiff
path: root/Kernel/Process.cpp
AgeCommit message (Expand)Author
2019-06-02AK: Add implicit String -> StringView conversionRobin Burchell
2019-06-02Kernel: Make better use of the multiboot info.Andreas Kling
2019-06-01Kernel: Add fchown() syscall.Andreas Kling
2019-06-01Kernel: Set the absolute path as name for executable regions.Andreas Kling
2019-05-31Kernel: Discard a process's ELFLoader on finalization.Andreas Kling
2019-05-31Kernel: Process finalization should release cwd and executable custodies.Andreas Kling
2019-05-31Kernel: Do a bit more of do_exec() before disabling interrupts.Andreas Kling
2019-05-30Kernel: The stat() syscall should follow symlinks.Andreas Kling
2019-05-30Kernel: Rename Process::cwd_custody() to Process::current_directory().Andreas Kling
2019-05-30FileSystem: Port most of the code over to using custodies.Andreas Kling
2019-05-30Kernel: Make the Process allocate_region* API's understand "int prot".Andreas Kling
2019-05-30Kernel: Make fcntl(F_SETFL) actually update the append/blocking flags.Andreas Kling
2019-05-30Kernel: Add InodeFile, a File subclass for regular files.Andreas Kling
2019-05-30Kernel/LibC: Implement sched_* functionality to set/get process priorityRobin Burchell
2019-05-26Kernel: Sending a signal to yourself should block until dispatch.Andreas Kling
2019-05-26Kernel: Send more specific signals when crashing due to CPU exceptions.Andreas Kling
2019-05-26Kernel: Support O_APPENDRobin Burchell
2019-05-23Kernel/AK: Move ELF loader to AKRobin Burchell
2019-05-23Kernel: getpeername() should fail with ENOTCONN for non-connected sockets.Andreas Kling
2019-05-22Kernel: Forked children should inherit their RangeAllocator by copy.Andreas Kling
2019-05-20Kernel: Add getpeername() syscall, and fix getsockname() behavior.Andreas Kling
2019-05-20Kernel: Let PageDirectory own the associated RangeAllocator.Andreas Kling
2019-05-20Kernel: Add support for recv() with MSG_DONTWAIT.Andreas Kling
2019-05-19Kernel+LibC: Implement getsockname() syscall.Andreas Kling
2019-05-19LibC: Add mmap_with_name() that names the allocation immediately.Andreas Kling
2019-05-19Kernel: Check can_write for blocking writeRobin Burchell
2019-05-19Kernel: Add the ability to debug poll/select independently of read/writeRobin Burchell
2019-05-18Kernel: Fix select with a 0 timeoutRobin Burchell
2019-05-18Kernel: Tidy up FileDescriptor members a bit.Andreas Kling
2019-05-18Kernel: Fix poll() with timeoutRobin Burchell
2019-05-18Kernel: select() was transferring the readfds into the exceptfds vector.Andreas Kling
2019-05-18Kernel: Pass ELF program header locations from multiboot to kernel.Andreas Kling
2019-05-18Kernel: Make sure to clear FD sets when preparing for a selectRobin Burchell
2019-05-18Kernel: Fix timeout support in selectRobin Burchell
2019-05-17Kernel: Make the times() syscall return something other than 0.Andreas Kling
2019-05-17Kernel/Process: Use auto to avoid incompatible types, causing a signedness wa...Robin Burchell
2019-05-17Kernel: Remove some unnecessary massaging of region base/size pairs.Andreas Kling
2019-05-17Kernel: Factor out range allocation from Process::allocate_region*().Andreas Kling
2019-05-17Kernel: Let Region keep a Range internally.Andreas Kling
2019-05-17Kernel: Remove Process::m_next_address.Andreas Kling
2019-05-17Kernel: Implement a simple virtual address range allocator.Andreas Kling
2019-05-16Kernel: Always dump_backtrace() on process crash.Andreas Kling
2019-05-16Kernel: Symbolicate userspace backtraces using ELFLoader.Andreas Kling
2019-05-16Kernel: Simplify dump_backtrace() API for clients.Andreas Kling
2019-05-14Kernel: Allocate kernel signal stacks using the region allocator as well.Andreas Kling
2019-05-14Kernel: Allocate kernel stacks for threads using the region allocator.Andreas Kling
2019-05-10Kernel: Add a writev() syscall for writing multiple buffers in one go.Andreas Kling
2019-05-06Kernel: Dump backtrace on exit() syscall.Andreas Kling
2019-05-04IPv4: Save the source address/port together with incoming packet payloads.Andreas Kling
2019-05-03Kernel+Userland: Implement mknod() syscall and add a /bin/mknod program.Andreas Kling