aboutsummaryrefslogtreecommitdiff
path: root/lib/mlibc/sysdeps/ironclad/generic/mount.cpp
blob: feb6e4c5134f333e025013e89e9bb4c13a05dbdb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <errno.h>
#include <sys/mount.h>
#include <bits/ensure.h>
#include <sys/syscall.h>
#include <string.h>

int mount(const char *source, const char *target, int type, int flags) {
	int ret;
	size_t source_len = strlen(source);
	size_t target_len = strlen(target);
	SYSCALL6(SYSCALL_MOUNT, source, source_len, target, target_len, type, flags);
	return ret;
}

int umount(const char *target, int flags) {
	int ret;
	size_t target_len = strlen(target);
	SYSCALL3(SYSCALL_UMOUNT, target, target_len, flags);
	return ret;
}