VOP_FSYNC
flush file system buffers for a file
- Provided by: freebsd-manpages (Version: 9.2+1-1)
- Report a bug
flush file system buffers for a file
#include
<sys/param.h>
#include <sys/vnode.h>
int
VOP_FSYNC(struct
vnode *vp, int
waitfor, struct thread
*td);
This call flushes any dirty file system buffers for the file. It is used to implement the sync(2) and fsync(2) system calls.
Its arguments are:
MNT_WAITMNT_NOWAITMNT_LAZYThe argument waitfor is either
MNT_WAIT or MNT_NOWAIT and
specifies whether or not the function should wait for the writes to finish
before returning.
The file should be locked on entry.
Zero is returned if the call is successful, otherwise an appropriate error code is returned.
This manual page was written by Doug Rabson.