Home
last modified time | relevance | path

Searched refs:timelimit (Results 1 – 3 of 3) sorted by relevance

/f-stack/app/redis-5.0.5/src/
H A Dexpire.c106 long long start = ustime(), timelimit, elapsed; in activeExpireCycle() local
136 timelimit = 1000000*ACTIVE_EXPIRE_CYCLE_SLOW_TIME_PERC/server.hz/100; in activeExpireCycle()
138 if (timelimit <= 0) timelimit = 1; in activeExpireCycle()
141 timelimit = ACTIVE_EXPIRE_CYCLE_FAST_DURATION; /* in microseconds. */ in activeExpireCycle()
221 if (elapsed > timelimit) { in activeExpireCycle()
H A Ddefrag.c1038 long long start, timelimit, endtime; in activeDefragCycle() local
1055 timelimit = 1000000*server.active_defrag_running/server.hz/100; in activeDefragCycle()
1056 if (timelimit <= 0) timelimit = 1; in activeDefragCycle()
1057 endtime = start + timelimit; in activeDefragCycle()
H A Dscripting.c2424 mstime_t timelimit = server.lua_time_limit ? in luaLdbLineHook() local
2426 if (elapsed >= timelimit) { in luaLdbLineHook()