1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 08:58:11 +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,9 +5,9 @@
#include <AK/HashMap.h>
#include <AK/Lock.h>
class DiskBackedFileSystem : public FileSystem {
class DiskBackedFS : public FS {
public:
virtual ~DiskBackedFileSystem() override;
virtual ~DiskBackedFS() override;
DiskDevice& device() { return *m_device; }
const DiskDevice& device() const { return *m_device; }
@ -15,7 +15,7 @@ public:
unsigned blockSize() const { return m_blockSize; }
protected:
explicit DiskBackedFileSystem(RetainPtr<DiskDevice>&&);
explicit DiskBackedFS(RetainPtr<DiskDevice>&&);
void setBlockSize(unsigned);
void invalidateCaches();