Lines Matching full:timeout
206 #define __swait_event_timeout(wq, condition, timeout) \ argument
208 TASK_UNINTERRUPTIBLE, timeout, \
211 #define swait_event_timeout_exclusive(wq, condition, timeout) \ argument
213 long __ret = timeout; \
215 __ret = __swait_event_timeout(wq, condition, timeout); \
231 #define __swait_event_interruptible_timeout(wq, condition, timeout) \ argument
233 TASK_INTERRUPTIBLE, timeout, \
236 #define swait_event_interruptible_timeout_exclusive(wq, condition, timeout)\ argument
238 long __ret = timeout; \
241 condition, timeout); \
267 #define __swait_event_idle_timeout(wq, condition, timeout) \ argument
269 TASK_IDLE, timeout, \
273 * swait_event_idle_timeout_exclusive - wait up to timeout without load contribution
276 * @timeout: timeout at which we'll give up in jiffies
286 * 0 if the @condition evaluated to %false after the @timeout elapsed,
287 * 1 if the @condition evaluated to %true after the @timeout elapsed,
289 * to %true before the @timeout elapsed.
291 #define swait_event_idle_timeout_exclusive(wq, condition, timeout) \ argument
293 long __ret = timeout; \
296 condition, timeout); \