Lines Matching full:sleep
9 * Sleep routines using timer list timers or hrtimers.
67 * usleep_range - Sleep for an approximate time
68 * @min: Minimum time in microseconds to sleep
69 * @max: Maximum time in microseconds to sleep
73 * The task will be in the state TASK_UNINTERRUPTIBLE during the sleep.
81 * usleep_range_idle - Sleep for an approximate time with idle time accounting
82 * @min: Minimum time in microseconds to sleep
83 * @max: Maximum time in microseconds to sleep
87 * The sleeping task has the state TASK_IDLE during the sleep to prevent
97 * @seconds: Requested sleep duration in seconds
110 * fsleep - flexible sleep which autoselects the best mechanism
111 * @usecs: requested sleep duration in microseconds
114 * to the requested sleep duration. Therefore it uses:
116 * * udelay() loop for sleep durations <= 10 microseconds to avoid hrtimer
117 * overhead for really short sleep durations.
118 * * usleep_range() for sleep durations which would lead with the usage of
121 * * msleep() for all other sleep durations.
125 * short sleep durations.