summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2018-11-01Move Region and Subregion out of Process and make them free classes.Andreas Kling
2018-11-01Process now maps regions immediately when they are allocated.Andreas Kling
2018-11-01Rename Task to Process.Andreas Kling
2018-11-01Fix crash when process spawn fails.Andreas Kling
2018-11-01Remove some unused MM functions.Andreas Kling
2018-11-01Implement address validation by querying the task's page directory.Andreas Kling
2018-11-01Do a bit less work in every context switch.Andreas Kling
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-01Have sh print out which signal terminated a child process.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-31printfing a number or string bigger than the field width should not crash.Andreas Kling
2018-10-31Add a /bin/tty command that prints the current tty.Andreas Kling
2018-10-31perror() should send output to stderr.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-31Fix wrong allocation size used in opendir().Andreas Kling
2018-10-31Use ALWAYS_INLINE for ctype inlines.Andreas Kling
2018-10-31Fix ls build.Andreas Kling
2018-10-31More LibC portability work while trying to get figlet building.Andreas Kling
2018-10-31A bunch of LibC boilerplate stuff added while trying to get figlet to build.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-30sh should read from fd 0 (stdin) instead of /dev/keyboard.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-29Add an inode metadata cache to the ext2fs implementation.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