X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/548efd91e5a33e1358213a902b8533d88f40f7cf..d876678b5eb0db0df66a658faeb8fb71e236a634:/src/redis.h diff --git a/src/redis.h b/src/redis.h index 3a5e3d4a..66a51c83 100644 --- a/src/redis.h +++ b/src/redis.h @@ -527,6 +527,7 @@ struct redisServer { int activerehashing; /* Incremental rehash in serverCron() */ char *requirepass; /* Pass for AUTH command, or NULL */ char *pidfile; /* PID file path */ + int arch_bits; /* 32 or 64 depending on sizeof(long) */ /* Networking */ int port; /* TCP listening port */ char *bindaddr; /* Bind address or NULL */ @@ -627,6 +628,7 @@ struct redisServer { list *unblocked_clients; /* list of clients to unblock before next loop */ /* Sort parameters - qsort_r() is only available under BSD so we * have to take this state global, in order to pass it to sortCompare() */ + int sort_dontsort; int sort_desc; int sort_alpha; int sort_bypattern;