Lines Matching full:sleep

31  * schedule_timeout - sleep until timeout
34 * Make the current task sleep until @timeout jiffies have elapsed.
38 * %TASK_RUNNING - the scheduler is called, but the task does not sleep
118 * schedule_timeout_interruptible - sleep until timeout (interruptible)
133 * schedule_timeout_killable - sleep until timeout (killable)
148 * schedule_timeout_uninterruptible - sleep until timeout (uninterruptible)
163 * schedule_timeout_idle - sleep until timeout (idle)
180 * schedule_hrtimeout_range_clock - sleep until timeout
228 * schedule_hrtimeout_range - sleep until timeout
233 * Make the current task sleep until the given expiry time has
269 * schedule_hrtimeout - sleep until timeout
283 * msleep - sleep safely even with waitqueue interruptions
284 * @msecs: Requested sleep duration in milliseconds
286 * msleep() uses jiffy based timeouts for the sleep duration. Because of the
292 * The slack of timers which will end up in level 0 depends on sleep duration
299 * turned around to find the minimal allowed sleep duration to meet the
303 * all sleep durations greater or equal 4ms will meet the constraints.
305 * all sleep durations greater or equal 8ms will meet the constraints.
307 * all sleep durations greater or equal 16ms will meet the constraints.
309 * all sleep durations greater or equal 32ms will meet the constraints.
323 * msleep_interruptible - sleep waiting for signals
324 * @msecs: Requested sleep duration in milliseconds
328 * The difference between msleep() and msleep_interruptible() is that the sleep
331 * Returns: The remaining time of the sleep duration transformed to msecs (see
345 * usleep_range_state - Sleep for an approximate time in a given state
346 * @min: Minimum time in usecs to sleep
347 * @max: Maximum time in usecs to sleep
356 * The sleeping task is set to the specified state before starting the sleep.
359 * usleep_range() or its variants instead of udelay(). The sleep improves
372 /* Do not return before the requested sleep time has elapsed */ in usleep_range_state()