summaryrefslogtreecommitdiff
path: root/Kernel
AgeCommit message (Expand)Author
2018-12-21Yet another pass of style fixes.Andreas Kling
2018-12-20Add a "syncd" kernel process that periodically calls sync().Andreas Kling
2018-12-20Add sync() syscall and a /bin/sync.Andreas Kling
2018-12-19Automatically call Inode::flush_metadata() before an Inode is destroyed.Andreas Kling
2018-12-19Reworked Inode to have a dirty bit and subclass-implemented flush_metadata().Andreas Kling
2018-12-19Rename CoreInode to Inode.Andreas Kling
2018-12-19Implement utime() along with a naive /bin/touch.Andreas Kling
2018-12-07VirtualConsole: Support the 'A' and 'D' CSI sequences.Andreas Kling
2018-12-07VirtualConsole: The rightmost column is always a default horizontal tab.Andreas Kling
2018-12-07VirtualConsole: Don't output the bell character.Andreas Kling
2018-12-07Add basic support for horizontal tabs in the VirtualConsole.Andreas Kling
2018-12-04Import a simple text editor I started working on.Andreas Kling
2018-12-03Refactor the FIFO implementation to use a DoubleBuffer as backing store.Andreas Kling
2018-12-03Omit duplicate lines from the ksyms map.Andreas Kling
2018-12-03Move DoubleBuffer to its own files.Andreas Kling
2018-12-03Yet more coding style fixes.Andreas Kling
2018-12-03Move InlineLinkedList to AK.Andreas Kling
2018-12-03Implement basic support for times().Andreas Kling
2018-12-03Share the "blocked-on file descriptor" number between read() and write().Andreas Kling
2018-12-03More coding style changes.Andreas Kling
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