#include <sys/mount.h>
int mount(const char *source, const char *target, const char *filesystemtype, unsigned long mountflags, const void *data);
Mounts a file system. mountflags
and data
are currently ignored (present for compatibility).
The app mount exposes this syscall.
Implemented in sys_system.c
as sys_mount()
.
Overview: syscalls