X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/41f0f927c97aafc2a7a42006491fca9181fab14c..886c9ecb7c0a68299bbc9b09020d14b3293e2f5a:/src/redis.h diff --git a/src/redis.h b/src/redis.h index b75e4bd8..071cb534 100644 --- a/src/redis.h +++ b/src/redis.h @@ -350,9 +350,8 @@ typedef struct multiState { } multiState; typedef struct blockingState { - robj **keys; /* The key we are waiting to terminate a blocking + dict *keys; /* The keys we are waiting to terminate a blocking * operation such as BLPOP. Otherwise NULL. */ - int count; /* Number of blocking keys */ time_t timeout; /* Blocking operation timeout. If UNIX current time * is >= timeout then the operation timed out. */ robj *target; /* The key that should receive the element, @@ -755,6 +754,7 @@ extern struct sharedObjectsStruct shared; extern dictType setDictType; extern dictType zsetDictType; extern dictType dbDictType; +extern dictType shaScriptObjectDictType; extern double R_Zero, R_PosInf, R_NegInf, R_Nan; extern dictType hashDictType;