VirtualFileSystem -> VFS
VirtualFileSystem::Node -> Vnode
This commit is contained in:
Andreas Kling 2018-11-15 14:43:10 +01:00
commit 457a5df7d5
Notes: sideshowbarker 2024-07-19 16:10:39 +09:00
13 changed files with 143 additions and 137 deletions

View file

@ -22,9 +22,9 @@ int main(int c, char** v)
if (c >= 2)
filename = v[1];
VirtualFileSystem::initializeGlobals();
VFS::initializeGlobals();
VirtualFileSystem vfs;
VFS vfs;
auto zero = make<ZeroDevice>();
vfs.registerCharacterDevice(*zero);