BarryServer : Git

All the code for all my projects
// BarryServer : Git / Nucleus / blob / 4760662b4aefcc8d41b04e8920f71583846594b1 / vfs / namespace.h

// Related

Nucleus

Barry File system namespace b085b26 (3 years, 3 months ago)
#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