diff options
| author | Michal Idziorek <m.i@gmx.at> | 2015-05-23 21:39:42 +0200 |
|---|---|---|
| committer | Michal Idziorek <m.i@gmx.at> | 2015-05-23 21:39:42 +0200 |
| commit | dadd5202a3ccfd8c03fb9eb60e6a15b0fb987672 (patch) | |
| tree | 3c4b818f90a4862f82ed2e03ceaaf9d7723d293d /fs/mount.c | |
| parent | 6c8be13c682a0aef520b2d3efeb67dcf078b1889 (diff) | |
filesystem stuff and experimenting with userspace tasks
Diffstat (limited to 'fs/mount.c')
| -rw-r--r-- | fs/mount.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/fs/mount.c b/fs/mount.c new file mode 100644 index 0000000..616262d --- /dev/null +++ b/fs/mount.c @@ -0,0 +1,12 @@ +#include "mount.h" + +void mount_add(char *path, void *data, + file (*open)(struct mount_struct*,char *path), + int (*getdents)(struct mount_struct*, uint32_t file_desciptor, fs_dirent *entries, uint32_t max_count)) +{ +} + +mount *mounts_get() +{ + return 0; +} |
