4 #define WNOHANG 0x00000001
5 #define WUNTRACED 0x00000002
6 #define WSTOPPED WUNTRACED
7 #define WEXITED 0x00000004
8 #define WCONTINUED 0x00000008
9 #define WNOWAIT 0x01000000 /* Don't reap, just poll status. */
11 #define __WNOTHREAD 0x20000000 /* Don't wait on children of other threads in this group */
12 #define __WALL 0x40000000 /* Wait on all children, regardless of type */
13 #define __WCLONE 0x80000000 /* Wait only on non-SIGCHLD children */
15 /* First argument to waitid: */
22 #include <linux/list.h>
23 #include <linux/stddef.h>
24 #include <linux/spinlock.h>
25 #include <asm/system.h>
26 #include <asm/current.h>
28 typedef struct __wait_queue wait_queue_t
;
29 typedef int (*wait_queue_func_t
)(wait_queue_t
*wait
, unsigned mode
, int sync
, void *key
);
30 int default_wake_function(wait_queue_t
*wait
, unsigned mode
, int sync
, void *key
);
34 #define WQ_FLAG_EXCLUSIVE 0x01
36 wait_queue_func_t func
;
37 struct list_head task_list
;
45 struct wait_bit_queue
{
46 struct wait_bit_key key
;
50 struct __wait_queue_head
{
52 struct list_head task_list
;
54 typedef struct __wait_queue_head wait_queue_head_t
;
59 * Macros for declaration and initialisaton of the datatypes
62 #define __WAITQUEUE_INITIALIZER(name, tsk) { \
64 .func = default_wake_function, \
65 .task_list = { NULL, NULL } }
67 #define DECLARE_WAITQUEUE(name, tsk) \
68 wait_queue_t name = __WAITQUEUE_INITIALIZER(name, tsk)
70 #define __WAIT_QUEUE_HEAD_INITIALIZER(name) { \
71 .lock = __SPIN_LOCK_UNLOCKED(name.lock), \
72 .task_list = { &(name).task_list, &(name).task_list } }
74 #define DECLARE_WAIT_QUEUE_HEAD(name) \
75 wait_queue_head_t name = __WAIT_QUEUE_HEAD_INITIALIZER(name)
77 #define __WAIT_BIT_KEY_INITIALIZER(word, bit) \
78 { .flags = word, .bit_nr = bit, }
80 extern void init_waitqueue_head(wait_queue_head_t
*q
);
83 # define __WAIT_QUEUE_HEAD_INIT_ONSTACK(name) \
84 ({ init_waitqueue_head(&name); name; })
85 # define DECLARE_WAIT_QUEUE_HEAD_ONSTACK(name) \
86 wait_queue_head_t name = __WAIT_QUEUE_HEAD_INIT_ONSTACK(name)
88 # define DECLARE_WAIT_QUEUE_HEAD_ONSTACK(name) DECLARE_WAIT_QUEUE_HEAD(name)
91 static inline void init_waitqueue_entry(wait_queue_t
*q
, struct task_struct
*p
)
95 q
->func
= default_wake_function
;
98 static inline void init_waitqueue_func_entry(wait_queue_t
*q
,
99 wait_queue_func_t func
)
106 static inline int waitqueue_active(wait_queue_head_t
*q
)
108 return !list_empty(&q
->task_list
);
111 extern void add_wait_queue(wait_queue_head_t
*q
, wait_queue_t
*wait
);
112 extern void add_wait_queue_exclusive(wait_queue_head_t
*q
, wait_queue_t
*wait
);
113 extern void remove_wait_queue(wait_queue_head_t
*q
, wait_queue_t
*wait
);
115 static inline void __add_wait_queue(wait_queue_head_t
*head
, wait_queue_t
*new)
117 list_add(&new->task_list
, &head
->task_list
);
121 * Used for wake-one threads:
123 static inline void __add_wait_queue_tail(wait_queue_head_t
*head
,
126 list_add_tail(&new->task_list
, &head
->task_list
);
129 static inline void __remove_wait_queue(wait_queue_head_t
*head
,
132 list_del(&old
->task_list
);
135 void __wake_up(wait_queue_head_t
*q
, unsigned int mode
, int nr
, void *key
);
136 void __wake_up_locked_key(wait_queue_head_t
*q
, unsigned int mode
, void *key
);
137 void __wake_up_sync_key(wait_queue_head_t
*q
, unsigned int mode
, int nr
,
139 void __wake_up_locked(wait_queue_head_t
*q
, unsigned int mode
);
140 void __wake_up_sync(wait_queue_head_t
*q
, unsigned int mode
, int nr
);
141 void __wake_up_bit(wait_queue_head_t
*, void *, int);
142 int __wait_on_bit(wait_queue_head_t
*, struct wait_bit_queue
*, int (*)(void *), unsigned);
143 int __wait_on_bit_lock(wait_queue_head_t
*, struct wait_bit_queue
*, int (*)(void *), unsigned);
144 void wake_up_bit(void *, int);
145 int out_of_line_wait_on_bit(void *, int, int (*)(void *), unsigned);
146 int out_of_line_wait_on_bit_lock(void *, int, int (*)(void *), unsigned);
147 wait_queue_head_t
*bit_waitqueue(void *, int);
149 #define wake_up(x) __wake_up(x, TASK_NORMAL, 1, NULL)
150 #define wake_up_nr(x, nr) __wake_up(x, TASK_NORMAL, nr, NULL)
151 #define wake_up_all(x) __wake_up(x, TASK_NORMAL, 0, NULL)
152 #define wake_up_locked(x) __wake_up_locked((x), TASK_NORMAL)
154 #define wake_up_interruptible(x) __wake_up(x, TASK_INTERRUPTIBLE, 1, NULL)
155 #define wake_up_interruptible_nr(x, nr) __wake_up(x, TASK_INTERRUPTIBLE, nr, NULL)
156 #define wake_up_interruptible_all(x) __wake_up(x, TASK_INTERRUPTIBLE, 0, NULL)
157 #define wake_up_interruptible_sync(x) __wake_up_sync((x), TASK_INTERRUPTIBLE, 1)
160 * Wakeup macros to be used to report events to the targets.
162 #define wake_up_poll(x, m) \
163 __wake_up(x, TASK_NORMAL, 1, (void *) (m))
164 #define wake_up_locked_poll(x, m) \
165 __wake_up_locked_key((x), TASK_NORMAL, (void *) (m))
166 #define wake_up_interruptible_poll(x, m) \
167 __wake_up(x, TASK_INTERRUPTIBLE, 1, (void *) (m))
168 #define wake_up_interruptible_sync_poll(x, m) \
169 __wake_up_sync_key((x), TASK_INTERRUPTIBLE, 1, (void *) (m))
171 #define __wait_event(wq, condition) \
173 DEFINE_WAIT(__wait); \
176 prepare_to_wait(&wq, &__wait, TASK_UNINTERRUPTIBLE); \
181 finish_wait(&wq, &__wait); \
185 * wait_event - sleep until a condition gets true
186 * @wq: the waitqueue to wait on
187 * @condition: a C expression for the event to wait for
189 * The process is put to sleep (TASK_UNINTERRUPTIBLE) until the
190 * @condition evaluates to true. The @condition is checked each time
191 * the waitqueue @wq is woken up.
193 * wake_up() has to be called after changing any variable that could
194 * change the result of the wait condition.
196 #define wait_event(wq, condition) \
200 __wait_event(wq, condition); \
203 #define __wait_event_timeout(wq, condition, ret) \
205 DEFINE_WAIT(__wait); \
208 prepare_to_wait(&wq, &__wait, TASK_UNINTERRUPTIBLE); \
211 ret = schedule_timeout(ret); \
215 finish_wait(&wq, &__wait); \
219 * wait_event_timeout - sleep until a condition gets true or a timeout elapses
220 * @wq: the waitqueue to wait on
221 * @condition: a C expression for the event to wait for
222 * @timeout: timeout, in jiffies
224 * The process is put to sleep (TASK_UNINTERRUPTIBLE) until the
225 * @condition evaluates to true. The @condition is checked each time
226 * the waitqueue @wq is woken up.
228 * wake_up() has to be called after changing any variable that could
229 * change the result of the wait condition.
231 * The function returns 0 if the @timeout elapsed, and the remaining
232 * jiffies if the condition evaluated to true before the timeout elapsed.
234 #define wait_event_timeout(wq, condition, timeout) \
236 long __ret = timeout; \
238 __wait_event_timeout(wq, condition, __ret); \
242 #define __wait_event_interruptible(wq, condition, ret) \
244 DEFINE_WAIT(__wait); \
247 prepare_to_wait(&wq, &__wait, TASK_INTERRUPTIBLE); \
250 if (!signal_pending(current)) { \
254 ret = -ERESTARTSYS; \
257 finish_wait(&wq, &__wait); \
261 * wait_event_interruptible - sleep until a condition gets true
262 * @wq: the waitqueue to wait on
263 * @condition: a C expression for the event to wait for
265 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
266 * @condition evaluates to true or a signal is received.
267 * The @condition is checked each time the waitqueue @wq is woken up.
269 * wake_up() has to be called after changing any variable that could
270 * change the result of the wait condition.
272 * The function will return -ERESTARTSYS if it was interrupted by a
273 * signal and 0 if @condition evaluated to true.
275 #define wait_event_interruptible(wq, condition) \
279 __wait_event_interruptible(wq, condition, __ret); \
283 #define __wait_event_interruptible_timeout(wq, condition, ret) \
285 DEFINE_WAIT(__wait); \
288 prepare_to_wait(&wq, &__wait, TASK_INTERRUPTIBLE); \
291 if (!signal_pending(current)) { \
292 ret = schedule_timeout(ret); \
297 ret = -ERESTARTSYS; \
300 finish_wait(&wq, &__wait); \
304 * wait_event_interruptible_timeout - sleep until a condition gets true or a timeout elapses
305 * @wq: the waitqueue to wait on
306 * @condition: a C expression for the event to wait for
307 * @timeout: timeout, in jiffies
309 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
310 * @condition evaluates to true or a signal is received.
311 * The @condition is checked each time the waitqueue @wq is woken up.
313 * wake_up() has to be called after changing any variable that could
314 * change the result of the wait condition.
316 * The function returns 0 if the @timeout elapsed, -ERESTARTSYS if it
317 * was interrupted by a signal, and the remaining jiffies otherwise
318 * if the condition evaluated to true before the timeout elapsed.
320 #define wait_event_interruptible_timeout(wq, condition, timeout) \
322 long __ret = timeout; \
324 __wait_event_interruptible_timeout(wq, condition, __ret); \
328 #define __wait_event_interruptible_exclusive(wq, condition, ret) \
330 DEFINE_WAIT(__wait); \
333 prepare_to_wait_exclusive(&wq, &__wait, \
334 TASK_INTERRUPTIBLE); \
336 finish_wait(&wq, &__wait); \
339 if (!signal_pending(current)) { \
343 ret = -ERESTARTSYS; \
344 abort_exclusive_wait(&wq, &__wait, \
345 TASK_INTERRUPTIBLE, NULL); \
350 #define wait_event_interruptible_exclusive(wq, condition) \
354 __wait_event_interruptible_exclusive(wq, condition, __ret);\
358 #define __wait_event_killable(wq, condition, ret) \
360 DEFINE_WAIT(__wait); \
363 prepare_to_wait(&wq, &__wait, TASK_KILLABLE); \
366 if (!fatal_signal_pending(current)) { \
370 ret = -ERESTARTSYS; \
373 finish_wait(&wq, &__wait); \
377 * wait_event_killable - sleep until a condition gets true
378 * @wq: the waitqueue to wait on
379 * @condition: a C expression for the event to wait for
381 * The process is put to sleep (TASK_KILLABLE) until the
382 * @condition evaluates to true or a signal is received.
383 * The @condition is checked each time the waitqueue @wq is woken up.
385 * wake_up() has to be called after changing any variable that could
386 * change the result of the wait condition.
388 * The function will return -ERESTARTSYS if it was interrupted by a
389 * signal and 0 if @condition evaluated to true.
391 #define wait_event_killable(wq, condition) \
395 __wait_event_killable(wq, condition, __ret); \
400 * Must be called with the spinlock in the wait_queue_head_t held.
402 static inline void add_wait_queue_exclusive_locked(wait_queue_head_t
*q
,
405 wait
->flags
|= WQ_FLAG_EXCLUSIVE
;
406 __add_wait_queue_tail(q
, wait
);
410 * Must be called with the spinlock in the wait_queue_head_t held.
412 static inline void remove_wait_queue_locked(wait_queue_head_t
*q
,
415 __remove_wait_queue(q
, wait
);
419 * These are the old interfaces to sleep waiting for an event.
420 * They are racy. DO NOT use them, use the wait_event* interfaces above.
421 * We plan to remove these interfaces.
423 extern void sleep_on(wait_queue_head_t
*q
);
424 extern long sleep_on_timeout(wait_queue_head_t
*q
,
425 signed long timeout
);
426 extern void interruptible_sleep_on(wait_queue_head_t
*q
);
427 extern long interruptible_sleep_on_timeout(wait_queue_head_t
*q
,
428 signed long timeout
);
431 * Waitqueues which are removed from the waitqueue_head at wakeup time
433 void prepare_to_wait(wait_queue_head_t
*q
, wait_queue_t
*wait
, int state
);
434 void prepare_to_wait_exclusive(wait_queue_head_t
*q
, wait_queue_t
*wait
, int state
);
435 void finish_wait(wait_queue_head_t
*q
, wait_queue_t
*wait
);
436 void abort_exclusive_wait(wait_queue_head_t
*q
, wait_queue_t
*wait
,
437 unsigned int mode
, void *key
);
438 int autoremove_wake_function(wait_queue_t
*wait
, unsigned mode
, int sync
, void *key
);
439 int wake_bit_function(wait_queue_t
*wait
, unsigned mode
, int sync
, void *key
);
441 #define DEFINE_WAIT_FUNC(name, function) \
442 wait_queue_t name = { \
443 .private = current, \
445 .task_list = LIST_HEAD_INIT((name).task_list), \
448 #define DEFINE_WAIT(name) DEFINE_WAIT_FUNC(name, autoremove_wake_function)
450 #define DEFINE_WAIT_BIT(name, word, bit) \
451 struct wait_bit_queue name = { \
452 .key = __WAIT_BIT_KEY_INITIALIZER(word, bit), \
454 .private = current, \
455 .func = wake_bit_function, \
457 LIST_HEAD_INIT((name).wait.task_list), \
461 #define init_wait(wait) \
463 (wait)->private = current; \
464 (wait)->func = autoremove_wake_function; \
465 INIT_LIST_HEAD(&(wait)->task_list); \
469 * wait_on_bit - wait for a bit to be cleared
470 * @word: the word being waited on, a kernel virtual address
471 * @bit: the bit of the word being waited on
472 * @action: the function used to sleep, which may take special actions
473 * @mode: the task state to sleep in
475 * There is a standard hashed waitqueue table for generic use. This
476 * is the part of the hashtable's accessor API that waits on a bit.
477 * For instance, if one were to have waiters on a bitflag, one would
478 * call wait_on_bit() in threads waiting for the bit to clear.
479 * One uses wait_on_bit() where one is waiting for the bit to clear,
480 * but has no intention of setting it.
482 static inline int wait_on_bit(void *word
, int bit
,
483 int (*action
)(void *), unsigned mode
)
485 if (!test_bit(bit
, word
))
487 return out_of_line_wait_on_bit(word
, bit
, action
, mode
);
491 * wait_on_bit_lock - wait for a bit to be cleared, when wanting to set it
492 * @word: the word being waited on, a kernel virtual address
493 * @bit: the bit of the word being waited on
494 * @action: the function used to sleep, which may take special actions
495 * @mode: the task state to sleep in
497 * There is a standard hashed waitqueue table for generic use. This
498 * is the part of the hashtable's accessor API that waits on a bit
499 * when one intends to set it, for instance, trying to lock bitflags.
500 * For instance, if one were to have waiters trying to set bitflag
501 * and waiting for it to clear before setting it, one would call
502 * wait_on_bit() in threads waiting to be able to set the bit.
503 * One uses wait_on_bit_lock() where one is waiting for the bit to
504 * clear with the intention of setting it, and when done, clearing it.
506 static inline int wait_on_bit_lock(void *word
, int bit
,
507 int (*action
)(void *), unsigned mode
)
509 if (!test_and_set_bit(bit
, word
))
511 return out_of_line_wait_on_bit_lock(word
, bit
, action
, mode
);
514 #endif /* __KERNEL__ */