git://scm.lunaixsky.com
/
lunaix-os.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Support to multi-threading and pthread interface (POSIX.1-2008) (#23)
[lunaix-os.git]
/
lunaix-os
/
usr
/
libc
/
arch
/
i386
/
mount.c
1
#include "syscall.h"
2
3
__LXSYSCALL4(int,
4
mount,
5
const char*,
6
source,
7
const char*,
8
target,
9
const char*,
10
fstype,
11
int,
12
options)
13
14
__LXSYSCALL1(int, unmount, const char*, target)