Message type for VFS_FSYNC

Change-Id: Iae9d27dbf40bc5567de6c5960f5cbe174be00dbd
This commit is contained in:
2014-05-12 13:07:11 +02:00
parent feb9b541da
commit 9ceebd7a4b
4 changed files with 10 additions and 5 deletions

View File

@@ -10,7 +10,7 @@ int fsync(int fd)
message m;
memset(&m, 0, sizeof(m));
m.VFS_FSYNC_FD = fd;
m.m_lc_vfs_fsync.fd = fd;
return(_syscall(VFS_PROC_NR, VFS_FSYNC, &m));
}