Query: vop_fsync
OS: minix
Section: 9
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
VOP_FSYNC(9) BSD Kernel Developer's Manual VOP_FSYNC(9)NAMEVOP_FSYNC -- flush file system buffers for a fileSYNOPSIS#include <sys/param.h> #include <sys/vnode.h> int VOP_FSYNC(struct vnode *vp, int waitfor, struct thread *td);DESCRIPTIONThis 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: vp The vnode of the file. waitfor Whether the function should wait for I/O to complete. Possible values are: MNT_WAIT Synchronously wait for I/O to complete. MNT_NOWAIT Start all I/O, but do not wait for it. MNT_LAZY Push data not written by file system syncer. td The calling thread. The 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.LOCKSThe file should be locked on entry.RETURN VALUESZero is returned if the call is successful, otherwise an appropriate error code is returned.ERRORS[ENOSPC] The file system is full. [EDQUOT] Quota exceeded.SEE ALSOvnode(9)AUTHORSThis manual page was written by Doug Rabson.BSDJuly 24, 1996 BSD
Related Man Pages |
---|
vop_fsync(9) - debian |
vop_mkdir(9) - debian |
vinvalbuf(9) - debian |
vop_fsync(9) - redhat |
vop_fsync(9) - osx |
Similar Topics in the Unix Linux Community |
---|
Need Help on "waitfor" command in net::Telnet Module |
Need Help on "waitfor" command in net::Telnet Module in PERL |
C: error in wait system call |