Lines Matching full:timeout
203 * wait_event_timeout - sleep until a condition gets true or a timeout elapses
206 * @timeout: timeout, in jiffies
215 * The function returns 0 if the @timeout elapsed, and the remaining
216 * jiffies if the condition evaluated to true before the timeout elapsed.
218 #define wait_event_timeout(wq, condition, timeout) \
220 long __ret = timeout; \
288 * wait_event_interruptible_timeout - sleep until a condition gets true or a timeout elapses
291 * @timeout: timeout, in jiffies
300 * The function returns 0 if the @timeout elapsed, -ERESTARTSYS if it
302 * if the condition evaluated to true before the timeout elapsed.
304 #define wait_event_interruptible_timeout(wq, condition, timeout) \
306 long __ret = timeout; \
365 signed long timeout));
368 signed long timeout));