9ceebd7a4b
Change-Id: Iae9d27dbf40bc5567de6c5960f5cbe174be00dbd
16 lines
246 B
C
16 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));
|
|
}
|