Files
ficus/src/kernel/vfs/VFSGlobals.cpp
Stepan Usatiuk d31bba399b VFS: less crazy design
with actual inodes now
2024-05-03 21:13:15 +02:00

22 lines
376 B
C++

//
// Created by Stepan Usatiuk on 24.02.2024.
//
#include "VFSGlobals.hpp"
Vector<DirEntry> RootNode::children() {
assert(false);
return {};
}
ino_t RootNode::mkdir(const String &name) {
assert(false);
return -1;
}
ino_t RootNode::mkfile(const String &name) {
assert(false);
return -1;
}
RootNode VFSGlobals::root;
MountTable VFSGlobals::mounts;