summaryrefslogtreecommitdiff
path: root/Kernel/ProcFileSystem.h
AgeCommit message (Collapse)Author
2018-12-03More coding style changes.Andreas Kling
2018-11-15Some more renaming:Andreas Kling
FileSystem -> FS SyntheticFileSystem -> SynthFS ProcFileSystem -> ProcFS Ext2FileSystem -> Ext2FS Ext2Inode -> Ext2FSInode
2018-11-15More VFS cleanup.Andreas Kling
2018-11-01Process now maps regions immediately when they are allocated.Andreas Kling
This avoids having to do a separate MM.mapRegionsForTask() pass. Also, more Task => Process renaming that I apparently hadn't saved yet.
2018-10-26Add a simple /proc/mounts that enumerates the current VFS mounts.Andreas Kling
2018-10-26Implement /proc/PID/vm.Andreas Kling
Refactored SyntheticFileSystem to maintain an arbitrary directory structure. ProcFileSystem creates a directory entry in /proc for each new process.
2018-10-23Start adding a basic /proc filesystem and a "ps" utility.Andreas Kling