fdatasync - 同步的核心与该数据在磁盘上的文件
内容简介
#include <unistd.h> int fdatasync(int fd);
描述
fdatasync() flushes all data buffers of a file to disk (before the system call returns). It resembles fsync() but is not required to update the metadata such as access time.
Applications that access databases or log files often write a tiny data fragment (e.g., one line in a log file) and then call fsync() immediately in order to ensure that the written data is physically stored on the harddisk. Unfortunately, fsync() will always initiate two write operations: one for the newly written data and another one in order to update the modification time stored in the inode.
If the modification time is not a part of the transaction concept fdatasync() can be used to avoid unnecessary inode disk write operations.
返回值
On success, zero is returned. On error, -1 is returned, and errno is set appropriately.
错误
Error Code | 描述 |
---|---|
EBADF | fd is not a valid file descriptor open for writing. |
EIO | An error occurred during synchronization. |
EROFS, EINVAL | fd is bound to a special file which does not support synchronization. |
BUGS
Currently (Linux 2.2) fdatasync() is equivalent to fsync().
可用性
On POSIX systems on which fdatasync() is available, _POSIX_SYNCHRONIZED_IO is defined in <unistd.h> to a value greater than 0. (See also sysconf(3).)
遵循于
POSIX.1-2001.
另请参阅