Lines Matching refs:wait
68 long *wait) in increase_sleep_time() argument
70 if (*wait == gc_th->no_gc_sleep_time) in increase_sleep_time()
73 *wait += gc_th->min_sleep_time; in increase_sleep_time()
74 if (*wait > gc_th->max_sleep_time) in increase_sleep_time()
75 *wait = gc_th->max_sleep_time; in increase_sleep_time()
79 long *wait) in decrease_sleep_time() argument
81 if (*wait == gc_th->no_gc_sleep_time) in decrease_sleep_time()
82 *wait = gc_th->max_sleep_time; in decrease_sleep_time()
84 *wait -= gc_th->min_sleep_time; in decrease_sleep_time()
85 if (*wait <= gc_th->min_sleep_time) in decrease_sleep_time()
86 *wait = gc_th->min_sleep_time; in decrease_sleep_time()