ArvernOS
|
Data Structures | |
struct | vfs_stat_t |
struct | dirent_t |
struct | vfs_driver_t |
struct | vfs_node_t |
Functions | |
inode_t | vfs_make_directory (const char *name) |
Virtual File System (VFS) implementation based on Thomas Lovén's work on MITTOS64, released under the MIT license - Copyright (c) 2016 Thomas Lovén.
MITTOS64's implementation is very likely based on Thomas' previous work on VFS described in http://thomasloven.com/blog/2013/12/VFS-syscalls/.
inode_t vfs_make_directory | ( | const char * | name | ) |
This function creates a VFS directory, which has no driver and it is supposed to be used as a mountpoint. This function is not (yet?) designed to create directories in the different concrete FS implementations.
name | the name of the directory to create |