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
etc/services - sync with NetBSD-8
[minix.git]
/
minix
/
lib
/
libc
/
sys
/
sync.c
blob
21cb600a9d47e853c8025e9ed83bc6cd8ecaa560
1
#include <sys/cdefs.h>
2
#include <lib.h>
3
#include
"namespace.h"
4
5
#include <string.h>
6
7
#include <unistd.h>
8
9
void
sync
(
void
)
10
{
11
message m
;
12
13
memset
(&
m
,
0
,
sizeof
(
m
));
14
(
void
)(
_syscall
(
VFS_PROC_NR
,
VFS_SYNC
, &
m
));
15
}