summaryrefslogtreecommitdiff
path: root/Kernel
AgeCommit message (Expand)Author
2019-05-07Shell: Move line editing to a separate class.Andreas Kling
2019-05-07Shell: Move the Shell to a separate directory and let's call it "Shell" :^)Andreas Kling
2019-05-06Kernel: Dump backtrace on exit() syscall.Andreas Kling
2019-05-04Kernel: Add a bit of logging in VMObject::inode_size_changed().Andreas Kling
2019-05-04Kernel: Computing the boot timestamp was a bit broken.Andreas Kling
2019-05-04IPv4: Rename source/destination in socket classes to local/peer.Andreas Kling
2019-05-04IPv4: Save the source address/port together with incoming packet payloads.Andreas Kling
2019-05-04sync.sh: Add "-f" option to forcibly regenerate _fs_contents from scratch.Andreas Kling
2019-05-04run: Make it easy to override which qemu executable is used.Andreas Kling
2019-05-04sync.sh: Don't regenerate _fs_contents from /dev/zero every time.Andreas Kling
2019-05-03Kernel+Userland: Implement mknod() syscall and add a /bin/mknod program.Andreas Kling
2019-05-03IPv4: Implement bind() for TCP and UDP sockets.Andreas Kling
2019-05-03Kernel: Make Socket inherit from File.Andreas Kling
2019-05-03Kernel: Prepare Socket for becoming a File.Andreas Kling
2019-05-02Kernel: Simplify VMObject::is_anonymous().Andreas Kling
2019-05-02Kernel: Remove unused Region::is_bitmap().Andreas Kling
2019-05-02Kernel: Emit systrace events for exit, thread_exit and sigreturn.Andreas Kling
2019-05-02Kernel: Assign Lock names in class member initializers.Andreas Kling
2019-05-01Fix jittery mouseMustafa Ali CAN
2019-04-30Kernel: Don't symbolicate symbol+offset for obvious non-kernel addresses.Andreas Kling
2019-04-29Kernel: The exit_thread() syscall should unlock the big lock.Andreas Kling
2019-04-29Kernel+LibC: Add exit_thread() syscall.Andreas Kling
2019-04-29Kernel: Have File virtuals take a FileDescriptor& rather than a Process&.Andreas Kling
2019-04-29Kernel: Make FIFO inherit from File.Andreas Kling
2019-04-28VFS: Also respect the sticky bit of the new parent in rename().Andreas Kling
2019-04-28VFS: Implement sticky bit behavior for rename() and unlink().Andreas Kling
2019-04-28Kernel: Make SharedMemory inherit from File.Andreas Kling
2019-04-28Ext2FS: Put some debug spam behind EXT2_DEBUG.Andreas Kling
2019-04-28Ext2FS: Support shrinking inode to a smaller size.Andreas Kling
2019-04-28Kernel: Dump backtrace on user process page fault.Andreas Kling
2019-04-28FileDescriptor: Let TTY handle its own absolute_path().Andreas Kling
2019-04-28Kernel: Make ProcessTracer inherit from File.Andreas Kling
2019-04-28Kernel: Add File, a base class for anything that a FileDescriptor can wrap.Andreas Kling
2019-04-27Kernel: Fix rename() sometimes failing to move within the same directory.Andreas Kling
2019-04-27DiskBackedFS: Flush write cache if it reaches 32 entries before sync.Andreas Kling
2019-04-27Ext2FS: Fix accidental zero-fill when appending to a file.Andreas Kling
2019-04-27Kernel: "Succeed" quietly for zero-length read() and write().Andreas Kling
2019-04-26LibC: Add execvpe() and make execvp()'ed children inherit environment.Andreas Kling
2019-04-25Kernel: Don't count kfree(nullptr) as a call to kfree().Andreas Kling
2019-04-25Kernel: Add a write cache to DiskBackedFS.Andreas Kling
2019-04-25Ext2FS: Reduce debug spam in block allocation.Andreas Kling
2019-04-25Kernel: Dump stack trace when kmalloc() fails.Andreas Kling
2019-04-25Kernel: Make it possible to look up FIFO's by ID.Andreas Kling
2019-04-24Allow passing extra args to qemu via a SERENITY_EXTRA_QEMU_ARGS env var.Andreas Kling
2019-04-24Kernel: Add a comment block about the Device class.Andreas Kling
2019-04-24Kernel: Simplify Device::open().Andreas Kling
2019-04-23Kernel: Process destruction should destroy all child threads.Andreas Kling
2019-04-23Put assertions behind a DEBUG flag to make it easy to build without them.Andreas Kling
2019-04-23Build: Pass --gc-sections to the linker in all builds.Andreas Kling
2019-04-23Kernel: Make the right shift key work.Andreas Kling