fix dummied-out fsync
authorRich Felker <dalias@aerifal.cx>
Wed, 20 Jun 2012 02:24:15 +0000 (22:24 -0400)
committerRich Felker <dalias@aerifal.cx>
Wed, 20 Jun 2012 02:24:15 +0000 (22:24 -0400)
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...

src/unistd/fsync.c

index 5991c66..dc4727c 100644 (file)
@@ -3,6 +3,5 @@
 
 int fsync(int fd)
 {
-       //return syscall(SYS_fsync, fd);
-       return 0;
+       return syscall(SYS_fsync, fd);
 }