diff options
Diffstat (limited to 'src/init/fs')
-rw-r--r-- | src/init/fs/misc.c | 8 | ||||
-rw-r--r-- | src/init/fs/misc.h | 3 |
2 files changed, 11 insertions, 0 deletions
diff --git a/src/init/fs/misc.c b/src/init/fs/misc.c index a8d9517..55d14fa 100644 --- a/src/init/fs/misc.c +++ b/src/init/fs/misc.c @@ -1,7 +1,15 @@ +#include <init/fs/misc.h> #include <init/stdlib.h> #include <shared/flags.h> +#include <shared/mem.h> #include <shared/syscalls.h> +bool fork2_n_mount(const char *path) { + handle_t h = _syscall_fs_fork2(); + if (h) _syscall_mount(h, path, strlen(path)); + return h; +} + void fs_passthru(void) { struct fs_wait_response res; int buf_size = 64; diff --git a/src/init/fs/misc.h b/src/init/fs/misc.h index c7ce7c7..87d5bdb 100644 --- a/src/init/fs/misc.h +++ b/src/init/fs/misc.h @@ -1,3 +1,6 @@ #pragma once +#include <stdbool.h> + +bool fork2_n_mount(const char *path); void fs_passthru(void); |