diff options
author | dzwdz | 2021-09-04 19:34:51 +0200 |
---|---|---|
committer | dzwdz | 2021-09-04 19:34:51 +0200 |
commit | 613de4db61dd99e7d2049b0a303e167fa711030b (patch) | |
tree | 84b577c30aac3ac7f8360fcc7aa78f7d29479538 /src/kernel/vfs/root.h | |
parent | c4531fa5e1aa16b7ba74de2975eadf06b3052b78 (diff) |
new vfs impl pt. 1: implement open()
Diffstat (limited to 'src/kernel/vfs/root.h')
-rw-r--r-- | src/kernel/vfs/root.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/kernel/vfs/root.h b/src/kernel/vfs/root.h new file mode 100644 index 0000000..617ba1c --- /dev/null +++ b/src/kernel/vfs/root.h @@ -0,0 +1,5 @@ +#pragma once +#include <kernel/vfs/mount.h> + +// the VFS provided to init +int vfs_root_handler(struct vfs_op_request *); |