FSYNC(2) BSD Programmer's Manual FSYNC(2)
fsync - synchronize a file's in-core state with that on disk
#include <unistd.h>
int
fsync(int fd);
fsync() causes all modified data and attributes of fd to be moved to a
permanent storage device. This normally results in all in-core modified
copies of buffers for the associated file to be written to a disk.
fsync() should be used by programs that require a file to be in a known
state, for example, in building a simple transaction facility.
A 0 value is returned on success. A -1 value indicates an error.
The fsync() fails if:
[EBADF] fd is not a valid descriptor.
[EINVAL] fd refers to a socket, not to a file.
[EIO] An I/O error occurred while reading from or writing to the
file system.
sync(2), sync(8), update(8)
The fsync() function call appeared in 4.2BSD.
MirOS BSD #10-current June 4, 1993 1
Generated on 2008-12-26 21:13:42 by $MirOS: src/scripts/roff2htm,v 1.57 2008/12/09 22:04:51 tg Exp $
These manual pages are copyrighted
by their respective writers; their source is available at our CVSweb, AnonCVS, and other mirrors.
The rest is Copyright © 2002-2008 The
MirOS Project, Germany.
This product includes material provided by Thorsten Glaser.
This manual page’s HTML representation is supposed to be valid XHTML/1.1; if not, please send a bug report – diffs preferred.