mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-12 02:30:30 +09:00
Kernel: Rename VFS => VirtualFileSystem
This commit is contained in:
parent
d53d9d3677
commit
0d39bd04d3
Notes:
sideshowbarker
2024-07-18 09:22:16 +09:00
Author: https://github.com/awesomekling
Commit: 0d39bd04d3
38 changed files with 124 additions and 124 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue