]> 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 c19cfc74bedc98cc2f4be45027bccd4d6563b1ea..6e98fbb2cecbceb32a192f1c8bae367cb1b7a11f 100644 (file)
--- a/config.h
+++ b/config.h
 #define HAVE_BACKTRACE 1
 #endif
 
+/* test for polling API */
+#ifdef __linux__
+#define HAVE_EPOLL 1
+#endif
+
+#if (defined(__APPLE__) && defined(MAC_OS_X_VERSION_10_6)) || defined(__FreeBSD__) || defined(__OpenBSD__) || defined (__NetBSD__)
+#define HAVE_KQUEUE 1
+#endif
+
+/* define aof_fsync to fdatasync() in Linux and fsync() for all the rest */
+#ifdef __linux__
+#define aof_fsync fdatasync
+#else
+#define aof_fsync fsync
+#endif
+
 #endif