summaryrefslogtreecommitdiff
path: root/Kernel
AgeCommit message (Expand)Author
2018-11-01Fix /proc/PID/stack in the new per-process page directory world.Andreas Kling
2018-11-01More work on per-process page directories. It basically works now!Andreas Kling
2018-11-01Give each task its own page directory.Andreas Kling
2018-11-01Waiters should be notified when a waitee is killed.Andreas Kling
2018-10-31Add a kmalloc_eternal() for things that will never be destroyed.Andreas Kling
2018-10-31Fix busted display of tty names in /proc/summary.Andreas Kling
2018-10-31Add a /bin/tty command that prints the current tty.Andreas Kling
2018-10-31Add SpinLock to IDE disk access.Andreas Kling
2018-10-31Snazz up the kprintf() output a bit by giving it its own color.Andreas Kling
2018-10-31Add getpwent() family of functions to LibC.Andreas Kling
2018-10-31Enough compatibility work to make figlet build and run!Andreas Kling
2018-10-31More LibC portability work while trying to get figlet building.Andreas Kling
2018-10-31Snazz up the sh prompt a bit. Add the current tty to it.Andreas Kling
2018-10-31Implement basic sys$kill() and add a /bin/killAndreas Kling
2018-10-31Fuck it, add a 4th virtual console. :^)Andreas Kling
2018-10-31Add assertion that RTC year is >= 2018.Andreas Kling
2018-10-31Minor cleanup.Andreas Kling
2018-10-31Pass the register dump to syscall_entry() via an argument.Andreas Kling
2018-10-30Minor VGA cleanup.Andreas Kling
2018-10-30Fix bug where Console::the() was initialized too late.Andreas Kling
2018-10-30Add sys$ttyname_r and ttyname_r() + ttyname().Andreas Kling
2018-10-30Fix crashy bug where we'd try to deactivate VC -1 on boot.Andreas Kling
2018-10-30Virtual consoles kinda work!Andreas Kling
2018-10-30Start working on virtual consoles/TTYs.Andreas Kling
2018-10-30Basic support the backspace key.Andreas Kling
2018-10-30Hang if a task crashes while it's already crashing..Andreas Kling
2018-10-30Implement sys$getcwd properly.Andreas Kling
2018-10-29Improve ps output.Andreas Kling
2018-10-29Okay let's just not have this broken locking at all right now.Andreas Kling
2018-10-29Fix broken SpinLock.Andreas Kling
2018-10-28Fix up VFS::resolveSymbolicLink() to use a base inode instead of a base path.Andreas Kling
2018-10-28Add basic symlink support.Andreas Kling
2018-10-28Add a VFS::absolutePath(InodeIdentifier).Andreas Kling
2018-10-28Add zone dump to /proc/mm.Andreas Kling
2018-10-28Add /proc/mm and a /bin/mm utility that just dumps it.Andreas Kling
2018-10-28Add subregions to /proc/PID/vmAndreas Kling
2018-10-28Add sys$set_mmap_name and use it from LibC's malloc.Andreas Kling
2018-10-28Canonicalize the path used by sh.Andreas Kling
2018-10-28Add save/unsave cursor escape sequences.Andreas Kling
2018-10-28Stop committing changes to _fs_contents and generate it in the sync script.Andreas Kling
2018-10-28Add basic support for ANSI color escape sequences.Andreas Kling
2018-10-27Implement 'H' and 'J' escape sequences.Andreas Kling
2018-10-27Add a /bin/clear that prints the clear terminal escape sequence.Andreas Kling
2018-10-27Add some basic field width support to printf().Andreas Kling
2018-10-27Rename "kernel map" concept to just "ksyms"Andreas Kling
2018-10-27Implement loading of linked ELF executables.Andreas Kling
2018-10-27Enable A20 line at boot.Andreas Kling
2018-10-27Implement waitpid() support for getting the waitee's exit code.Andreas Kling
2018-10-27Remove the obsolete "Userspace" stuff.Andreas Kling
2018-10-27Turn off the floppy drive after the boot loader is finished.Andreas Kling