]> git.saurik.com Git - redis.git/commitdiff
Fixed compilation on *BSD systems
authorantirez <antirez@gmail.com>
Mon, 5 Jul 2010 18:14:48 +0000 (20:14 +0200)
committerantirez <antirez@gmail.com>
Mon, 5 Jul 2010 18:14:48 +0000 (20:14 +0200)
TODO
src/redis.h

diff --git a/TODO b/TODO
index 4fcdb18f5432679bbd8b61e434288953552df9ff..5d9736a9b71c5978c737506917661dc10a011f88 100644 (file)
--- a/TODO
+++ b/TODO
@@ -6,6 +6,7 @@ VERSION 2.2 TODO (Optimizations and latency)
 
 * Support for syslog(3).
 * Change the implementation of ZCOUNT to use the augmented skiplist in order to be much faster.
+* Add an explicit test for MULTI/EXEC reloaded in the AOF.
 
 VM TODO
 =======
index 545a3e0fdba45315cc1964d53402324327c070fb..4ff8362074fc1a7e0610510004d8cb6ae172e667 100644 (file)
@@ -16,6 +16,7 @@
 #include <unistd.h>
 #include <errno.h>
 #include <inttypes.h>
+#include <pthread.h>
 
 #include "ae.h"     /* Event driven programming library */
 #include "sds.h"    /* Dynamic safe strings */