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_common(wait_queue_head_t *q, unsigned int mode,
136 int nr_exclusive, int sync, void *key);
137 void __wake_up(wait_queue_head_t *q, unsigned int mode, int nr, void *key);
138 void __wake_up_locked_key(wait_queue_head_t *q, unsigned int mode, void *key);
139 void __wake_up_sync_key(wait_queue_head_t *q, unsigned int mode, int nr,
141 void __wake_up_locked(wait_queue_head_t *q, unsigned int mode);
142 void __wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr);
143 void __wake_up_bit(wait_queue_head_t *, void *, int);
144 int __wait_on_bit(wait_queue_head_t *, struct wait_bit_queue *, int (*)(void *), unsigned);
145 int __wait_on_bit_lock(wait_queue_head_t *, struct wait_bit_queue *, int (*)(void *), unsigned);
146 void wake_up_bit(void *, int);
147 int out_of_line_wait_on_bit(void *, int, int (*)(void *), unsigned);
148 int out_of_line_wait_on_bit_lock(void *, int, int (*)(void *), unsigned);
149 wait_queue_head_t *bit_waitqueue(void *, int);
151 #define wake_up(x) __wake_up(x, TASK_NORMAL, 1, NULL)
152 #define wake_up_nr(x, nr) __wake_up(x, TASK_NORMAL, nr, NULL)
153 #define wake_up_all(x) __wake_up(x, TASK_NORMAL, 0, NULL)
154 #define wake_up_locked(x) __wake_up_locked((x), TASK_NORMAL)
156 #define wake_up_interruptible(x) __wake_up(x, TASK_INTERRUPTIBLE, 1, NULL)
157 #define wake_up_interruptible_nr(x, nr) __wake_up(x, TASK_INTERRUPTIBLE, nr, NULL)
158 #define wake_up_interruptible_all(x) __wake_up(x, TASK_INTERRUPTIBLE, 0, NULL)
159 #define wake_up_interruptible_sync(x) __wake_up_sync((x), TASK_INTERRUPTIBLE, 1)
162 * Wakeup macros to be used to report events to the targets.
164 #define wake_up_poll(x, m) \
165 __wake_up(x, TASK_NORMAL, 1, (void *) (m))
166 #define wake_up_locked_poll(x, m) \
167 __wake_up_locked_key((x), TASK_NORMAL, (void *) (m))
168 #define wake_up_interruptible_poll(x, m) \
169 __wake_up(x, TASK_INTERRUPTIBLE, 1, (void *) (m))
170 #define wake_up_interruptible_sync_poll(x, m) \
171 __wake_up_sync_key((x), TASK_INTERRUPTIBLE, 1, (void *) (m))
173 #define __wait_event(wq, condition) \
175 DEFINE_WAIT(__wait); \
178 prepare_to_wait(&wq, &__wait, TASK_UNINTERRUPTIBLE); \
183 finish_wait(&wq, &__wait); \
187 * wait_event - sleep until a condition gets true
188 * @wq: the waitqueue to wait on
189 * @condition: a C expression for the event to wait for
191 * The process is put to sleep (TASK_UNINTERRUPTIBLE) until the
192 * @condition evaluates to true. The @condition is checked each time
193 * the waitqueue @wq is woken up.
195 * wake_up() has to be called after changing any variable that could
196 * change the result of the wait condition.
198 #define wait_event(wq, condition) \
202 __wait_event(wq, condition); \
205 #define __wait_event_timeout(wq, condition, ret) \
207 DEFINE_WAIT(__wait); \
210 prepare_to_wait(&wq, &__wait, TASK_UNINTERRUPTIBLE); \
213 ret = schedule_timeout(ret); \
217 finish_wait(&wq, &__wait); \
221 * wait_event_timeout - sleep until a condition gets true or a timeout elapses
222 * @wq: the waitqueue to wait on
223 * @condition: a C expression for the event to wait for
224 * @timeout: timeout, in jiffies
226 * The process is put to sleep (TASK_UNINTERRUPTIBLE) until the
227 * @condition evaluates to true. The @condition is checked each time
228 * the waitqueue @wq is woken up.
230 * wake_up() has to be called after changing any variable that could
231 * change the result of the wait condition.
233 * The function returns 0 if the @timeout elapsed, and the remaining
234 * jiffies if the condition evaluated to true before the timeout elapsed.
236 #define wait_event_timeout(wq, condition, timeout) \
238 long __ret = timeout; \
240 __wait_event_timeout(wq, condition, __ret); \
244 #define __wait_event_interruptible(wq, condition, ret) \
246 DEFINE_WAIT(__wait); \
249 prepare_to_wait(&wq, &__wait, TASK_INTERRUPTIBLE); \
252 if (!signal_pending(current)) { \
256 ret = -ERESTARTSYS; \
259 finish_wait(&wq, &__wait); \
263 * wait_event_interruptible - sleep until a condition gets true
264 * @wq: the waitqueue to wait on
265 * @condition: a C expression for the event to wait for
267 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
268 * @condition evaluates to true or a signal is received.
269 * The @condition is checked each time the waitqueue @wq is woken up.
271 * wake_up() has to be called after changing any variable that could
272 * change the result of the wait condition.
274 * The function will return -ERESTARTSYS if it was interrupted by a
275 * signal and 0 if @condition evaluated to true.
277 #define wait_event_interruptible(wq, condition) \
281 __wait_event_interruptible(wq, condition, __ret); \
285 #define __wait_event_interruptible_timeout(wq, condition, ret) \
287 DEFINE_WAIT(__wait); \
290 prepare_to_wait(&wq, &__wait, TASK_INTERRUPTIBLE); \
293 if (!signal_pending(current)) { \
294 ret = schedule_timeout(ret); \
299 ret = -ERESTARTSYS; \
302 finish_wait(&wq, &__wait); \
306 * wait_event_interruptible_timeout - sleep until a condition gets true or a timeout elapses
307 * @wq: the waitqueue to wait on
308 * @condition: a C expression for the event to wait for
309 * @timeout: timeout, in jiffies
311 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
312 * @condition evaluates to true or a signal is received.
313 * The @condition is checked each time the waitqueue @wq is woken up.
315 * wake_up() has to be called after changing any variable that could
316 * change the result of the wait condition.
318 * The function returns 0 if the @timeout elapsed, -ERESTARTSYS if it
319 * was interrupted by a signal, and the remaining jiffies otherwise
320 * if the condition evaluated to true before the timeout elapsed.
322 #define wait_event_interruptible_timeout(wq, condition, timeout) \
324 long __ret = timeout; \
326 __wait_event_interruptible_timeout(wq, condition, __ret); \
330 #define __wait_event_interruptible_exclusive(wq, condition, ret) \
332 DEFINE_WAIT(__wait); \
335 prepare_to_wait_exclusive(&wq, &__wait, \
336 TASK_INTERRUPTIBLE); \
338 finish_wait(&wq, &__wait); \
341 if (!signal_pending(current)) { \
345 ret = -ERESTARTSYS; \
346 abort_exclusive_wait(&wq, &__wait, \
347 TASK_INTERRUPTIBLE, NULL); \
352 #define wait_event_interruptible_exclusive(wq, condition) \
356 __wait_event_interruptible_exclusive(wq, condition, __ret);\
360 #define __wait_event_killable(wq, condition, ret) \
362 DEFINE_WAIT(__wait); \
365 prepare_to_wait(&wq, &__wait, TASK_KILLABLE); \
368 if (!fatal_signal_pending(current)) { \
372 ret = -ERESTARTSYS; \
375 finish_wait(&wq, &__wait); \
379 * wait_event_killable - sleep until a condition gets true
380 * @wq: the waitqueue to wait on
381 * @condition: a C expression for the event to wait for
383 * The process is put to sleep (TASK_KILLABLE) until the
384 * @condition evaluates to true or a signal is received.
385 * The @condition is checked each time the waitqueue @wq is woken up.
387 * wake_up() has to be called after changing any variable that could
388 * change the result of the wait condition.
390 * The function will return -ERESTARTSYS if it was interrupted by a
391 * signal and 0 if @condition evaluated to true.
393 #define wait_event_killable(wq, condition) \
397 __wait_event_killable(wq, condition, __ret); \
402 * Must be called with the spinlock in the wait_queue_head_t held.
404 static inline void add_wait_queue_exclusive_locked(wait_queue_head_t *q,
407 wait->flags |= WQ_FLAG_EXCLUSIVE;
408 __add_wait_queue_tail(q, wait);
412 * Must be called with the spinlock in the wait_queue_head_t held.
414 static inline void remove_wait_queue_locked(wait_queue_head_t *q,
417 __remove_wait_queue(q, wait);
421 * These are the old interfaces to sleep waiting for an event.
422 * They are racy. DO NOT use them, use the wait_event* interfaces above.
423 * We plan to remove these interfaces.
425 extern void sleep_on(wait_queue_head_t *q);
426 extern long sleep_on_timeout(wait_queue_head_t *q,
427 signed long timeout);
428 extern void interruptible_sleep_on(wait_queue_head_t *q);
429 extern long interruptible_sleep_on_timeout(wait_queue_head_t *q,
430 signed long timeout);
433 * Waitqueues which are removed from the waitqueue_head at wakeup time
435 void prepare_to_wait(wait_queue_head_t *q, wait_queue_t *wait, int state);
436 void prepare_to_wait_exclusive(wait_queue_head_t *q, wait_queue_t *wait, int state);
437 void finish_wait(wait_queue_head_t *q, wait_queue_t *wait);
438 void abort_exclusive_wait(wait_queue_head_t *q, wait_queue_t *wait,
439 unsigned int mode, void *key);
440 int autoremove_wake_function(wait_queue_t *wait, unsigned mode, int sync, void *key);
441 int wake_bit_function(wait_queue_t *wait, unsigned mode, int sync, void *key);
443 #define DEFINE_WAIT_FUNC(name, function) \
444 wait_queue_t name = { \
445 .private = current, \
447 .task_list = LIST_HEAD_INIT((name).task_list), \
450 #define DEFINE_WAIT(name) DEFINE_WAIT_FUNC(name, autoremove_wake_function)
452 #define DEFINE_WAIT_BIT(name, word, bit) \
453 struct wait_bit_queue name = { \
454 .key = __WAIT_BIT_KEY_INITIALIZER(word, bit), \
456 .private = current, \
457 .func = wake_bit_function, \
459 LIST_HEAD_INIT((name).wait.task_list), \
463 #define init_wait(wait) \
465 (wait)->private = current; \
466 (wait)->func = autoremove_wake_function; \
467 INIT_LIST_HEAD(&(wait)->task_list); \
471 * wait_on_bit - wait for a bit to be cleared
472 * @word: the word being waited on, a kernel virtual address
473 * @bit: the bit of the word being waited on
474 * @action: the function used to sleep, which may take special actions
475 * @mode: the task state to sleep in
477 * There is a standard hashed waitqueue table for generic use. This
478 * is the part of the hashtable's accessor API that waits on a bit.
479 * For instance, if one were to have waiters on a bitflag, one would
480 * call wait_on_bit() in threads waiting for the bit to clear.
481 * One uses wait_on_bit() where one is waiting for the bit to clear,
482 * but has no intention of setting it.
484 static inline int wait_on_bit(void *word, int bit,
485 int (*action)(void *), unsigned mode)
487 if (!test_bit(bit, word))
489 return out_of_line_wait_on_bit(word, bit, action, mode);
493 * wait_on_bit_lock - wait for a bit to be cleared, when wanting to set it
494 * @word: the word being waited on, a kernel virtual address
495 * @bit: the bit of the word being waited on
496 * @action: the function used to sleep, which may take special actions
497 * @mode: the task state to sleep in
499 * There is a standard hashed waitqueue table for generic use. This
500 * is the part of the hashtable's accessor API that waits on a bit
501 * when one intends to set it, for instance, trying to lock bitflags.
502 * For instance, if one were to have waiters trying to set bitflag
503 * and waiting for it to clear before setting it, one would call
504 * wait_on_bit() in threads waiting to be able to set the bit.
505 * One uses wait_on_bit_lock() where one is waiting for the bit to
506 * clear with the intention of setting it, and when done, clearing it.
508 static inline int wait_on_bit_lock(void *word, int bit,
509 int (*action)(void *), unsigned mode)
511 if (!test_and_set_bit(bit, word))
513 return out_of_line_wait_on_bit_lock(word, bit, action, mode);
516 #endif /* __KERNEL__ */