1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:47:36 +00:00

Some more renaming:

FileSystem -> FS
SyntheticFileSystem -> SynthFS
ProcFileSystem -> ProcFS
Ext2FileSystem -> Ext2FS
Ext2Inode -> Ext2FSInode
This commit is contained in:
Andreas Kling 2018-11-15 17:13:10 +01:00
parent eced5f11e3
commit 2529925fe9
16 changed files with 187 additions and 187 deletions

View file

@ -5,12 +5,12 @@
class Process;
class ProcFileSystem final : public SyntheticFileSystem {
class ProcFS final : public SynthFS {
public:
static ProcFileSystem& the() PURE;
static ProcFS& the() PURE;
virtual ~ProcFileSystem() override;
static RetainPtr<ProcFileSystem> create();
virtual ~ProcFS() override;
static RetainPtr<ProcFS> create();
virtual bool initialize() override;
virtual const char* class_name() const override;
@ -19,7 +19,7 @@ public:
void removeProcess(Process&);
private:
ProcFileSystem();
ProcFS();
HashMap<pid_t, InodeIndex> m_pid2inode;
};