Voxia OS v0.0.1
Hobby Project Operating System Targeting x86-64
Loading...
Searching...
No Matches
mount.h
Go to the documentation of this file.
1#ifndef __VFS__MOUNT_H__
2#define __VFS__MOUNT_H__
3
4#include "vfs/dentry.h"
5#include "vfs/dev.h"
6#include "vfs/vnode.h"
7
8#ifdef __cplusplus
9extern "C" {
10#endif
11
19
21
22#ifdef __cplusplus
23}
24#endif
25
26#endif // __VFS__MOUNT_H__
struct dentry * dentry_ptr
Definition dentry.h:20
struct vnode * vnode_ptr_t
Definition dentry.h:115
cdev_t * cdev_ptr_t
Definition dev.h:70
mount_ptr_t vxAllocMountTable()
struct mount mount_t
mount_t * mount_ptr_t
Definition mount.h:18
Definition mount.h:12
int flags
Definition mount.h:16
cdev_ptr_t dev
Definition mount.h:13
vnode_ptr_t root
Definition mount.h:15
dentry_ptr mount_point
Definition mount.h:14