summaryrefslogtreecommitdiff
path: root/VirtualFileSystem
AgeCommit message (Expand)Author
2018-11-07Implement sending signals to blocked-in-kernel processes.Andreas Kling
2018-11-07Fix some broken stuff in VFS test environment.Andreas Kling
2018-11-07Make VFS test environment build again.Andreas Kling
2018-11-07Rename FileHandle to FileDescriptor.Andreas Kling
2018-11-07Add some basic setgroups(), getgroups() and initgroups().Andreas Kling
2018-11-06Add strsignal() and improve sharing signal numbers between LibC and kernel.Andreas Kling
2018-11-06Add some basic signal support.Andreas Kling
2018-11-05More work towards getting bash to build.Andreas Kling
2018-11-05More random compat hacking towards getting bash to build.Andreas Kling
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