summaryrefslogtreecommitdiff
path: root/Kernel/FileSystem/VirtualFileSystem.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-07-11 00:25:24 +0200
committerAndreas Kling <kling@serenityos.org>2021-07-11 00:25:24 +0200
commit0d39bd04d3f1ff4347a766e12d52a5a7c101d8ad (patch)
tree0e0cde2972ec2f4897b06942f076ca374c8c7110 /Kernel/FileSystem/VirtualFileSystem.h
parentd53d9d3677703b2e8f6a57fdc512f44a178ddee7 (diff)
downloadserenity-0d39bd04d3f1ff4347a766e12d52a5a7c101d8ad.zip
Kernel: Rename VFS => VirtualFileSystem
Diffstat (limited to 'Kernel/FileSystem/VirtualFileSystem.h')
-rw-r--r--Kernel/FileSystem/VirtualFileSystem.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/Kernel/FileSystem/VirtualFileSystem.h b/Kernel/FileSystem/VirtualFileSystem.h
index 87d07a9041..04c46fde2b 100644
--- a/Kernel/FileSystem/VirtualFileSystem.h
+++ b/Kernel/FileSystem/VirtualFileSystem.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
+ * Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
@@ -30,7 +30,7 @@ struct UidAndGid {
gid_t gid;
};
-class VFS {
+class VirtualFileSystem {
AK_MAKE_ETERNAL
public:
class Mount {
@@ -59,10 +59,10 @@ public:
};
static void initialize();
- static VFS& the();
+ static VirtualFileSystem& the();
- VFS();
- ~VFS();
+ VirtualFileSystem();
+ ~VirtualFileSystem();
bool mount_root(FileSystem&);
KResult mount(FileSystem&, Custody& mount_point, int flags);