Add a simple /proc/mounts that enumerates the current VFS mounts.

This commit is contained in:
Andreas Kling 2018-10-26 18:43:25 +02:00
commit 81627cf7d5
Notes: sideshowbarker 2024-07-19 18:38:02 +09:00
6 changed files with 46 additions and 17 deletions

View file

@ -7,7 +7,7 @@ class Task;
class ProcFileSystem final : public SyntheticFileSystem {
public:
static ProcFileSystem& the();
static ProcFileSystem& the() PURE;
virtual ~ProcFileSystem() override;
static RetainPtr<ProcFileSystem> create();