summaryrefslogtreecommitdiff
path: root/Kernel/ProcFS.cpp
AgeCommit message (Expand)Author
2019-03-10ProcessManager: Show some basic system memory stats below the process table.Andreas Kling
2019-03-06Kernel: And some more KResult/KResultOr<T> porting work.Andreas Kling
2019-02-27Kernel: Use KResult in link().Andreas Kling
2019-02-27Kernel: Use KResult in unlink() and rmdir().Andreas Kling
2019-02-27Add chown() syscall and a simple /bin/chown program.Andreas Kling
2019-02-25More moving towards using signed types.Andreas Kling
2019-02-25Kernel: Add KResult and KResultOr<T> classes.Andreas Kling
2019-02-25AK: Add Retained<T>, like RetainPtr, but never null.Andreas Kling
2019-02-21Kernel: Process::cwd_inode() should return a reference.Andreas Kling
2019-02-21Add a simple /bin/df which gathers its info from /proc/df.Andreas Kling
2019-02-21Kernel: Add link() syscall to create hard links.Andreas Kling
2019-02-17Kernel: Remove tracking of bitmap memory.Andreas Kling
2019-02-12Fix some compilation warnings.Andreas Kling
2019-02-10ProcFS: Show region flags in /proc/PID/vmAndreas Kling
2019-02-10ProcFS: /proc/sys entries should always be regular 644 files.Andreas Kling
2019-02-08Kernel: Use a Lockable<bool> for sysctl booleans as well.Andreas Kling
2019-02-08ProcFS: Add sysctl strings.Andreas Kling
2019-02-07Kernel: Add basic process priority support.Andreas Kling
2019-02-07Kernel: When a lock is busy, donate remaining process ticks to lock holder.Andreas Kling
2019-02-06Kernel: Add /proc/pci so we can see what's on the PCI bus.Andreas Kling
2019-02-05Show the amount of memory in GraphicsBitmaps in /bin/top.Andreas Kling
2019-02-04ProcFS: Fix wrong linkage for /proc/cpuinfo inode.Andreas Kling
2019-02-04Add a /bin/top program for process table monitoring.Andreas Kling
2019-02-03Kernel: Add a /proc/all process table dump.Andreas Kling
2019-02-03Kernel: Rewrite ProcFS.Andreas Kling