]> git.saurik.com Git - redis.git/blobdiff - src/redis.h
Move code for pushing on a (blocking) RPOPLPUSH
[redis.git] / src / redis.h
index 0de94585b89ca6ebc41ffd767539dd9d77d1f010..27cb82598ede70538be75b629c006cb3491780f8 100644 (file)
@@ -326,7 +326,7 @@ typedef struct redisClient {
     long repldboff;         /* replication DB file offset */
     off_t repldbsize;       /* replication DB file size */
     multiState mstate;      /* MULTI/EXEC state */
-    blockingState bstate;   /* blocking state */
+    blockingState bpop;   /* blocking state */
     list *io_keys;          /* Keys this client is waiting to be loaded from the
                              * swap file in order to continue. */
     list *watched_keys;     /* Keys WATCHED for MULTI/EXEC CAS */
@@ -433,7 +433,7 @@ struct redisServer {
     int maxmemory_policy;
     int maxmemory_samples;
     /* Blocked clients */
-    unsigned int blpop_blocked_clients;
+    unsigned int bpop_blocked_clients;
     unsigned int vm_blocked_clients;
     /* Sort parameters - qsort_r() is only available under BSD so we
      * have to take this state global, in order to pass it to sortCompare() */