Commit fc0fb0ba authored by Salvatore Sanfilippo's avatar Salvatore Sanfilippo
Browse files

Merge pull request #1635 from mattsta/lruclock-instead-of-getlruclock

Use LRU_CLOCK() instead of function getLRUClock()
parents 7f1c3607 78782ed5
......@@ -40,7 +40,7 @@ robj *createObject(int type, void *ptr) {
o->refcount = 1;
/* Set the LRU to the current lruclock (minutes resolution). */
o->lru = getLRUClock();
o->lru = LRU_CLOCK();
return o;
}
......@@ -61,7 +61,7 @@ robj *createEmbeddedStringObject(char *ptr, size_t len) {
o->encoding = REDIS_ENCODING_EMBSTR;
o->ptr = sh+1;
o->refcount = 1;
o->lru = getLRUClock();
o->lru = LRU_CLOCK();
sh->len = len;
sh->free = 0;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment