aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2012-10-11 00:42:47 -0700
committerWladimir J. van der Laan <laanwj@gmail.com>2012-10-11 00:42:47 -0700
commit16f3618c13c479b729349abc3b965df3f94342c5 (patch)
tree4deef31f1a5e8d4ab70daf3ca254fb2e3996f8d1 /src
parent24694e24ed6085d2184b396b9e8f717cc56754c3 (diff)
parente9965213907bf5dee4ae54be38f9c048aa124644 (diff)
downloadbitcoin-16f3618c13c479b729349abc3b965df3f94342c5.tar.xz
Merge pull request #1879 from sipa/fdatasync
Use fdatasync instead of fsync on supported platforms
Diffstat (limited to 'src')
-rw-r--r--src/util.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/util.cpp b/src/util.cpp
index 3eb2619e8f..c72b84bfa4 100644
--- a/src/util.cpp
+++ b/src/util.cpp
@@ -1119,7 +1119,11 @@ void FileCommit(FILE *fileout)
#ifdef WIN32
_commit(_fileno(fileout));
#else
+ #if defined(__linux__) || defined(__NetBSD__)
+ fdatasync(fileno(fileout));
+ #else
fsync(fileno(fileout));
+ #endif
#endif
}