summaryrefslogtreecommitdiff
path: root/Kernel
AgeCommit message (Expand)Author
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
2019-04-23Ext2S: Fix off-by-one error in block allocation.Andreas Kling
2019-04-23Ext2FS: Bitmaps aren't always at full capacity.Andreas Kling
2019-04-23Ext2FS: More bitmap misunderstanding cleanups.Andreas Kling
2019-04-23Ext2FS: Simplify block bitmap stuff.Andreas Kling
2019-04-23Do a pass of compiler warning fixes.Andreas Kling
2019-04-23Kernel: Use rep insw/outsw for IDE transfers.Andreas Kling
2019-04-23Kernel: Send IDE flush command after writing sectors.Andreas Kling
2019-04-23Kernel: Use IDE LBA addressing instead of the long-obsolete C/H/S.Andreas Kling
2019-04-22Kernel: Make sure we don't use any FPU/MMX/SSE instructions.Andreas Kling
2019-04-22Kernel: Add a systrace() syscall and implement /bin/strace using it.Andreas Kling
2019-04-22Kernel: Don't use MMX memcpy() in the kernel.Andreas Kling
2019-04-21Kernel: Get rid of the "cool globals" thingy.Andreas Kling
2019-04-21Include Makefile.common in all other Makefiles.Andreas Kling
2019-04-20Kernel: Remove "restorer" field from SignalActionData.Andreas Kling
2019-04-20Kernel: Remove some more unnecessary Thread members.Andreas Kling
2019-04-20Kernel: Shrink Thread by making kernel resume TSS heap-allocated.Andreas Kling
2019-04-20Kernel: Make the colonel run at "Idle" priority (the lowest possible.)Andreas Kling
2019-04-20AK: Add String::copy(BufferType) helper.Andreas Kling
2019-04-20Sprinkle use of AK::Vector in various places.Andreas Kling
2019-04-20Get rid of SERENITY macro since the compiler already defines __serenity__Andreas Kling
2019-04-20Snake: Flesh out a basic snake game :^)Andreas Kling
2019-04-18LibGUI: Start working on GTableView inline editing.Andreas Kling
2019-04-18Kernel+LibC: Add a DebugLogDevice that forwards everything to I/O port 0xe9.Andreas Kling
2019-04-17Kernel+ProcessManager: Show per-process syscall counts.Andreas Kling
2019-04-17Kernel: Scheduler donations need to verify that the beneficiary is valid.Andreas Kling
2019-04-17Kernel: Lock::unlock_if_locked() should never donate to holder.Andreas Kling
2019-04-16AK: Try to use StringViews more for substrings and splitting.Andreas Kling
2019-04-16Kernel: Reduce kmallocing in all_processes() and all_pids().Andreas Kling
2019-04-16Kernel: Reduce kmallocing in /proc/all and /proc/memstat.Andreas Kling
2019-04-16Kernel: Have TTY subclasses cache their tty_name/pts_name.Andreas Kling
2019-04-15Kernel: Make it possible to have kmalloc() dump call stacks.Andreas Kling
2019-04-15Kernel: Make symbolication callable from kmalloc().Andreas Kling
2019-04-15Kernel: Make validate_read_from_kernel() return early for nullptr checks.Andreas Kling
2019-04-15Kernel+ProcessManager: Expose the number of kmalloc/kfree calls.Andreas Kling