minix/lib/libc/sys-minix/fsync.c
Lionel Sambuc 9ceebd7a4b Message type for VFS_FSYNC
Change-Id: Iae9d27dbf40bc5567de6c5960f5cbe174be00dbd
2014-07-28 17:05:31 +02:00

17 lines
246 B
C

#include <sys/cdefs.h>
#include "namespace.h"
#include <lib.h>
#include <string.h>
#include <unistd.h>
int fsync(int fd)
{
message m;
memset(&m, 0, sizeof(m));
m.m_lc_vfs_fsync.fd = fd;
return(_syscall(VFS_PROC_NR, VFS_FSYNC, &m));
}