Lines Matching defs:wait
16 #define DEF_GC_THREAD_NOGC_SLEEP_TIME 300000 /* wait 5 min */
49 * will wait on this wait queue.
136 unsigned int *wait)
141 if (*wait == gc_th->no_gc_sleep_time)
144 if ((long long)*wait + (long long)min_time > (long long)max_time)
145 *wait = max_time;
147 *wait += min_time;
151 unsigned int *wait)
155 if (*wait == gc_th->no_gc_sleep_time)
156 *wait = gc_th->max_sleep_time;
158 if ((long long)*wait - (long long)min_time < (long long)min_time)
159 *wait = min_time;
161 *wait -= min_time;