Lines Matching refs:wakeup_time
152 if (!is_runnable(thread) && thread->wakeup_time >= 0) { in schedule()
153 if (thread->wakeup_time <= tm) { in schedule()
156 } else if (thread->wakeup_time < wakeup) in schedule()
157 wakeup = thread->wakeup_time; in schedule()
235 thread->wakeup_time = -1; in create_thread()
329 thread->wakeup_time = now() + millisecs; in msleep()
338 thread->wakeup_time = millisecs; in abssleep()
353 thread->wakeup_time = now() + (millisecs - real_now); in abssleep_real()
366 thread->wakeup_time = -1; in wake()
373 thread->wakeup_time = -1; in block()
406 thread->wakeup_time = -1; in init_sched()
605 w.who->wakeup_time = now() + msec; in wait()