repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
some coverity fixes.
[minix.git]
/
lib
/
libc
/
sys-minix
/
sync.c
blob
3bf0c3b63909852f0dd8508b1df4af9c23e1d217
1
#include <sys/cdefs.h>
2
#include <lib.h>
3
#include
"namespace.h"
4
5
#ifdef __weak_alias
6
__weak_alias
(
sync
,
_sync
)
7
#endif
8
9
#include <unistd.h>
10
11
void
sync
()
12
{
13
message m
;
14
15
(
void
)(
_syscall
(
VFS_PROC_NR
,
SYNC
, &
m
));
16
}