Searched defs:delay (Results 1 - 1 of 1) sorted by relevance

/httpd/support/
H A Dhtcacheclean.c55 * scheduling, so never use a delay <= 2ms below
1378 apr_time_t current, repeat, delay, previous; local
1793 delay = repeat;
1796 delay = repeat;
1799 delay = now + repeat - current;
1802 /* we can't sleep the whole delay time here apiece as this is racy
1809 while (delay && !interrupted) {
1810 if (delay > APR_USEC_PER_SEC) {
1812 delay -= APR_USEC_PER_SEC;
1815 apr_sleep(delay);
[all...]

Completed in 3137 milliseconds