]> git.ipfire.org Git - thirdparty/man-pages.git/blobdiff - man2/fdatasync.2
Add section numbers to references to other pages
[thirdparty/man-pages.git] / man2 / fdatasync.2
index 49cd2315c674ebd35eb1bc584de7fdfe72afaf38..34fbbdbd2ee69de1d62d1a8fa831c3caf0c5b7c6 100644 (file)
@@ -40,16 +40,16 @@ fdatasync \- synchronize a file's in-core data with that on disk
 flushes all data buffers of a file to disk (before the system
 call returns).
 It resembles
-.BR fsync ()
+.BR fsync (2)
 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
-.BR fsync ()
+.BR fsync (2)
 immediately in order to ensure that the written data is physically
 stored on the harddisk.
 Unfortunately,
-.BR fsync ()
+.BR fsync (2)
 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.
@@ -78,7 +78,7 @@ is bound to a special file which does not support synchronization.
 Currently (Linux 2.2)
 .BR fdatasync ()
 is equivalent to
-.BR fsync ().
+.BR fsync (2).
 .SH AVAILABILITY
 On POSIX systems on which
 .BR fdatasync ()