]> git.saurik.com Git - redis.git/blobdiff - config.h
log error and quit when the AOF contains an unfinished MULTI
[redis.git] / config.h
index d1da9887dfc64930a72886c1cc5a4f029635296e..6e98fbb2cecbceb32a192f1c8bae367cb1b7a11f 100644 (file)
--- a/config.h
+++ b/config.h
 #define HAVE_KQUEUE 1
 #endif
 
-/* test for O_DIRECT */
+/* define aof_fsync to fdatasync() in Linux and fsync() for all the rest */
 #ifdef __linux__
-#define HAVE_O_DIRECT 1
+#define aof_fsync fdatasync
+#else
+#define aof_fsync fsync
 #endif
 
 #endif