summaryrefslogtreecommitdiff
path: root/Kernel
AgeCommit message (Expand)Author
2018-12-03Some coding style fixes. I'm getting more comfortable with this style.Andreas Kling
2018-12-02Make it possible to build the Kernel on a macOS host.Andreas Kling
2018-12-02Move ELFLoader code into Kernel/.Andreas Kling
2018-11-29Add TIOCGWINSZ ioctl so userland can determine terminal geometry.Andreas Kling
2018-11-28Fix bug where a signal-interrupted waitpid() wouldn't return EINTR.Andreas Kling
2018-11-28Implement signal() via sigaction() and get rid of sys$signal().Andreas Kling
2018-11-28Let reap() communicate the dead process's exit status to the caller.Andreas Kling
2018-11-28Drop any old signal stacks on exec().Andreas Kling
2018-11-19Add basic zero faults.Andreas Kling
2018-11-19Make /proc/PID/vm more readable.Andreas Kling
2018-11-18Finally hook up the mkdir code to a syscall.Andreas Kling
2018-11-17Fix race condition in exec().Andreas Kling
2018-11-17Tweak default hostname.Andreas Kling
2018-11-17Make bash-2.05b build with minimal changes.Andreas Kling
2018-11-16Add fcntl() F_DUPFD which is slightly different from dup2().Andreas Kling
2018-11-16Don't unblock a blocked process when it ignores a signal.Andreas Kling
2018-11-16Refactor TTY signal generation a bit.Andreas Kling
2018-11-16Minor TTY tweak.Andreas Kling
2018-11-16Add a DoubleBuffer thingy to allow TTY read/write to be interleaved.Andreas Kling
2018-11-16Add templated helpers for read/write validation, and one for strings, too.Andreas Kling
2018-11-16Improve syscall address validation a bit.Andreas Kling
2018-11-16Reimplement tcsetattr/tcgetattr as ioctls.Andreas Kling
2018-11-16Add ioctl() and reimplement tcsetpgrp/tcsetpgrp as ioctls.Andreas Kling
2018-11-15Some more renaming:Andreas Kling
2018-11-15More VFS cleanup.Andreas Kling
2018-11-15A pass of style/naming cleanup in VFS.Andreas Kling
2018-11-15Rename:Andreas Kling
2018-11-13More work on CoreInode.Andreas Kling
2018-11-13Add metadata to CoreInode.Andreas Kling
2018-11-13Make page_in_from_vnode 2x faster.Andreas Kling
2018-11-13Add close-on-exec flag for file descriptors.Andreas Kling
2018-11-13Reduce kmalloc() traffic in directory iteration.Andreas Kling
2018-11-12Add a braindead 10x speedup to kmalloc().Andreas Kling
2018-11-12Make loading /bin/bash ~250x faster.Andreas Kling
2018-11-12Some minor termios debugging output.Andreas Kling
2018-11-12Add primitive FIFO and hook it up to sys$pipe().Andreas Kling
2018-11-11Add a naive /bin/fgrep for testing pipes.Andreas Kling
2018-11-11Rage hacking to get bash to run. It finally runs. So cool! :^)Andreas Kling
2018-11-11Stub out a bunch more functions to get closer to that sweet bash build.Andreas Kling
2018-11-11Add ispunct() to LibC + some minor cleanups.Andreas Kling
2018-11-11A bunch of compat work (mostly stubs but some real implementations, too.)Andreas Kling
2018-11-10Some improvements to signals.Andreas Kling
2018-11-10Remove MM::allocate_physical_pages() since it wasn't used.Andreas Kling
2018-11-10Add /proc/PID/cwd, a symlink to the process's current directory.Andreas Kling
2018-11-10Rename ProcessInspectionScope to ProcessInspectionHandle.Andreas Kling
2018-11-10Merge VGA into VirtualConsole.Andreas Kling
2018-11-10Merge Disk namespace into the IDEDiskDevice class.Andreas Kling
2018-11-10Before sys$write returns, check for pending unmasked signals.Andreas Kling
2018-11-10Make /bin/clear work again.Andreas Kling
2018-11-09Use the VGA start address for fast VirtualConsole scrolling.Andreas Kling