about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-06-19 22:24:15 -0400
committerRich Felker <dalias@aerifal.cx>2012-06-19 22:24:15 -0400
commitee1f69a3606987a973ccd0b378d26d0fb077364a (patch)
tree38a2cf56439cc88e9db744a6597a48644e16d313
parentca1773d8645672f6e67b10bc94aa5639b01a1ebe (diff)
downloadmusl-ee1f69a3606987a973ccd0b378d26d0fb077364a.tar.gz
musl-ee1f69a3606987a973ccd0b378d26d0fb077364a.tar.xz
musl-ee1f69a3606987a973ccd0b378d26d0fb077364a.zip
fix dummied-out fsync
if we eventually have build options, it might be nice to make an
option to dummy this out again, in case anybody needs a system-wide
disable for disk/ssd-thrashing, etc. that some daemons do when
logging...
-rw-r--r--src/unistd/fsync.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/unistd/fsync.c b/src/unistd/fsync.c
index 5991c66b..dc4727cc 100644
--- a/src/unistd/fsync.c
+++ b/src/unistd/fsync.c
@@ -3,6 +3,5 @@
 
 int fsync(int fd)
 {
-	//return syscall(SYS_fsync, fd);
-	return 0;
+	return syscall(SYS_fsync, fd);
 }