From ee1f69a3606987a973ccd0b378d26d0fb077364a Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Tue, 19 Jun 2012 22:24:15 -0400 Subject: 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... --- src/unistd/fsync.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/unistd') 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); } -- cgit v1.2.1