summaryrefslogtreecommitdiff
path: root/VirtualFileSystem
AgeCommit message (Expand)Author
2018-11-02Implement fork()!Andreas Kling
2018-11-02Add tcsetpgrp()+tcgetpgrp().Andreas Kling
2018-11-01Add a /proc/PID/fds text files that lists all the fds open in a process.Andreas Kling
2018-11-01Process now maps regions immediately when they are allocated.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-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-31Enough compatibility work to make figlet build and run!Andreas Kling
2018-10-30Add sys$ttyname_r and ttyname_r() + ttyname().Andreas Kling
2018-10-30Virtual consoles kinda work!Andreas Kling
2018-10-30Start working on virtual consoles/TTYs.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-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-27Add some basic field width support to printf().Andreas Kling
2018-10-27Greatly improve /proc/PID/stack by tracing the ebp frame chain.Andreas Kling
2018-10-26Add a very hackish /proc/PID/stack.Andreas Kling
2018-10-26Add a simple /proc/mounts that enumerates the current VFS mounts.Andreas Kling
2018-10-26Fix bug where you couldn't "cd .." into the root of a mounted fs.Andreas Kling
2018-10-26Implement /proc/PID/vm.Andreas Kling
2018-10-26Implement sys$chdir() and teach sh+ls to cd around and browse different dirs.Andreas Kling
2018-10-26Remove logspam in /dev/{full,null,zero} now that they work just fine.Andreas Kling
2018-10-25Implement a basic way for read() to block.Andreas Kling
2018-10-25Add a very naive block cache to the DiskBackedFileSystem.Andreas Kling
2018-10-24Add a "pwd" utility to userland.Andreas Kling
2018-10-24Put more logspam behind EXT2_DEBUG.Andreas Kling
2018-10-24Lots of hacking to make a very simple "ls" utility.Andreas Kling
2018-10-24synthfs: generated files should have size=0.Andreas Kling
2018-10-23Generalize the SpinLock and move it to AK.Andreas Kling
2018-10-23Start adding a basic /proc filesystem and a "ps" utility.Andreas Kling
2018-10-23Lots of hacking:Andreas Kling
2018-10-23Don't use doubles in RandomDevice.Andreas Kling
2018-10-22Import very modest Userland.Andreas Kling
2018-10-22Zero out VirtualFileSystem::s_the in initializeGlobals().Andreas Kling
2018-10-22A lot of hacking:Andreas Kling
2018-10-21printf -> kprintfAndreas Kling
2018-10-19Add a way to initialize VFS globals.Andreas Kling
2018-10-18Add an fd field to FileHandle in Kernel builds.Andreas Kling
2018-10-17Fix some minor build warnings.Andreas Kling
2018-10-17Make VFS host build work again.Andreas Kling
2018-10-17Print the contents of motd.txt on boot.Andreas Kling
2018-10-17List the root directory after mounting /.Andreas Kling
2018-10-17VirtualFileSystem class builds inside Kernel.Andreas Kling
2018-10-17Integrate ext2 from VFS into Kernel.Andreas Kling
2018-10-16Add the basic character devices to kernel.Andreas Kling