]> git.saurik.com Git - redis.git/blobdiff - src/redis.h
don't open/close log file if log level is not matched
[redis.git] / src / redis.h
index 545a3e0fdba45315cc1964d53402324327c070fb..d5fabc2d226a404173362091b80bdc5eeadbe1ee 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 */
@@ -326,6 +327,7 @@ struct sharedObjectsStruct {
 
 /* Global server state structure */
 struct redisServer {
+    pthread_t mainthread;
     int port;
     int fd;
     redisDb *db;