From: antirez Date: Wed, 14 Mar 2012 08:56:22 +0000 (+0100) Subject: Call all the helper functions needed by clientsCron() as clientsCronSomething() for... X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/5e473cd8fd461b64dc4909ec5b611ac2f1acbf2a Call all the helper functions needed by clientsCron() as clientsCronSomething() for clarity. --- diff --git a/src/redis.c b/src/redis.c index 1b576e04..58b5f1c4 100644 --- a/src/redis.c +++ b/src/redis.c @@ -628,7 +628,7 @@ long long getOperationsPerSecond(void) { return sum / REDIS_OPS_SEC_SAMPLES; } -void closeTimedoutClient(redisClient *c) { +void clientsCronHandleTimeout(redisClient *c) { time_t now = time(NULL); if (server.maxidletime && @@ -668,7 +668,7 @@ void clientsCron(void) { listRotate(server.clients); head = listFirst(server.clients); c = listNodeValue(head); - closeTimedoutClient(c); + clientsCronHandleTimeout(c); } }