Lines Matching full:timeout
193 #define __swait_event_timeout(wq, condition, timeout) \ argument
195 TASK_UNINTERRUPTIBLE, timeout, \
198 #define swait_event_timeout_exclusive(wq, condition, timeout) \ argument
200 long __ret = timeout; \
202 __ret = __swait_event_timeout(wq, condition, timeout); \
218 #define __swait_event_interruptible_timeout(wq, condition, timeout) \ argument
220 TASK_INTERRUPTIBLE, timeout, \
223 #define swait_event_interruptible_timeout_exclusive(wq, condition, timeout)\ argument
225 long __ret = timeout; \
228 condition, timeout); \
254 #define __swait_event_idle_timeout(wq, condition, timeout) \ argument
256 TASK_IDLE, timeout, \
260 * swait_event_idle_timeout_exclusive - wait up to timeout without load contribution
263 * @timeout: timeout at which we'll give up in jiffies
273 * 0 if the @condition evaluated to %false after the @timeout elapsed,
274 * 1 if the @condition evaluated to %true after the @timeout elapsed,
276 * to %true before the @timeout elapsed.
278 #define swait_event_idle_timeout_exclusive(wq, condition, timeout) \ argument
280 long __ret = timeout; \
283 condition, timeout); \