X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/2cc993655f2c7da5f893e6f628f6c34f6204c3d3..e270a7fa58d242d3cef9ebfe4724719b92afe7d6:/src/redis.h diff --git a/src/redis.h b/src/redis.h index b0491e40..cdddb601 100644 --- a/src/redis.h +++ b/src/redis.h @@ -72,6 +72,8 @@ #define REDIS_VMPOINTER 8 /* Object types only used for persistence in .rdb files */ #define REDIS_HASH_ZIPMAP 9 +#define REDIS_LIST_ZIPLIST 10 +#define REDIS_SET_INTSET 11 /* Objects encoding. Some kind of objects like Strings and Hashes can be * internally represented in multiple ways. The 'encoding' field of the object @@ -794,7 +796,7 @@ zskiplistNode *zslInsert(zskiplist *zsl, double score, robj *obj); /* Core functions */ void freeMemoryIfNeeded(void); int processCommand(redisClient *c); -void setupSigSegvAction(void); +void setupSignalHandlers(void); struct redisCommand *lookupCommand(sds name); struct redisCommand *lookupCommandByCString(char *s); void call(redisClient *c, struct redisCommand *cmd);