summaryrefslogtreecommitdiff
path: root/c_src
diff options
context:
space:
mode:
authorMagnus Ahltorp <map@kth.se>2015-02-02 16:28:54 +0100
committerMagnus Ahltorp <map@kth.se>2015-02-02 16:28:54 +0100
commitdd70b3dade88fa6cef463d4c7f63cbac982a3abf (patch)
tree2d6b154337076b82690db9cad6be7987a1f7208f /c_src
parent48a012e62e24db422c92378f8449d0aa859bc01c (diff)
Temporarily disable fsync
Diffstat (limited to 'c_src')
-rw-r--r--c_src/fsynchelper.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/c_src/fsynchelper.c b/c_src/fsynchelper.c
index 6ffa80a..e629cf0 100644
--- a/c_src/fsynchelper.c
+++ b/c_src/fsynchelper.c
@@ -16,6 +16,7 @@
static int
dosync(int fd)
{
+ return 0;
#ifdef F_FULLFSYNC
int ret = fcntl(fd, F_FULLFSYNC);
#else