X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/355f859134e6220cb35d7b3fa9ea19ea8d05c02a..30c06ae6b43a5909d842011cc6dd1443d056c684:/src/redis.h diff --git a/src/redis.h b/src/redis.h index ad624111..982f33fe 100644 --- a/src/redis.h +++ b/src/redis.h @@ -820,6 +820,7 @@ void freeClientsInAsyncFreeQueue(void); void asyncCloseClientOnOutputBufferLimitReached(redisClient *c); int getClientLimitClassByName(char *name); char *getClientLimitClassName(int class); +void flushSlavesOutputBuffers(void); #ifdef __GNUC__ void addReplyErrorFormat(redisClient *c, const char *fmt, ...) @@ -943,7 +944,7 @@ unsigned int zsetLength(robj *zobj); void zsetConvert(robj *zobj, int encoding); /* Core functions */ -void freeMemoryIfNeeded(void); +int freeMemoryIfNeeded(void); int processCommand(redisClient *c); void setupSignalHandlers(void); struct redisCommand *lookupCommand(sds name);