Nucleus
Barry File system namespace b085b26 (3 years, 3 months ago)
diff --git a/vfs/namespace.h b/vfs/namespace.h
new file mode 100644
index 0000000..e4c8a63
--- /dev/null
+++ b/vfs/namespace.h
@@ -0,0 +1,15 @@
+#ifndef VFS_NAMESPACE_H
+#define VFS_NAMESPACE_H
+
+#include <nucleus/object.h>
+#include <nucleus/vfs.h>
+
+/* Structure for a File System namespace */
+struct FileSystem {
+ Object obj;
+ Inode *cwd;
+ ObjectList *cwdPath;
+ Inode *root;
+};
+
+#endif