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
);
112 * Used to distinguish between sync and async io wait context:
113 * sync i/o typically specifies a NULL wait queue entry or a wait
114 * queue entry bound to a task (current task) to wake up.
115 * aio specifies a wait queue entry with an async notification
116 * callback routine, not associated with any task.
118 #define is_sync_wait(wait) (!(wait) || ((wait)->private))
120 extern void FASTCALL(add_wait_queue(wait_queue_head_t
*q
, wait_queue_t
* wait
));
121 extern void FASTCALL(add_wait_queue_exclusive(wait_queue_head_t
*q
, wait_queue_t
* wait
));
122 extern void FASTCALL(remove_wait_queue(wait_queue_head_t
*q
, wait_queue_t
* wait
));
124 static inline void __add_wait_queue(wait_queue_head_t
*head
, wait_queue_t
*new)
126 list_add(&new->task_list
, &head
->task_list
);
130 * Used for wake-one threads:
132 static inline void __add_wait_queue_tail(wait_queue_head_t
*head
,
135 list_add_tail(&new->task_list
, &head
->task_list
);
138 static inline void __remove_wait_queue(wait_queue_head_t
*head
,
141 list_del(&old
->task_list
);
144 void FASTCALL(__wake_up(wait_queue_head_t
*q
, unsigned int mode
, int nr
, void *key
));
145 extern void FASTCALL(__wake_up_locked(wait_queue_head_t
*q
, unsigned int mode
));
146 extern void FASTCALL(__wake_up_sync(wait_queue_head_t
*q
, unsigned int mode
, int nr
));
147 void FASTCALL(__wake_up_bit(wait_queue_head_t
*, void *, int));
148 int FASTCALL(__wait_on_bit(wait_queue_head_t
*, struct wait_bit_queue
*, int (*)(void *), unsigned));
149 int FASTCALL(__wait_on_bit_lock(wait_queue_head_t
*, struct wait_bit_queue
*, int (*)(void *), unsigned));
150 void FASTCALL(wake_up_bit(void *, int));
151 int FASTCALL(out_of_line_wait_on_bit(void *, int, int (*)(void *), unsigned));
152 int FASTCALL(out_of_line_wait_on_bit_lock(void *, int, int (*)(void *), unsigned));
153 wait_queue_head_t
*FASTCALL(bit_waitqueue(void *, int));
155 #define wake_up(x) __wake_up(x, TASK_NORMAL, 1, NULL)
156 #define wake_up_nr(x, nr) __wake_up(x, TASK_NORMAL, nr, NULL)
157 #define wake_up_all(x) __wake_up(x, TASK_NORMAL, 0, NULL)
158 #define wake_up_locked(x) __wake_up_locked((x), TASK_NORMAL)
160 #define wake_up_interruptible(x) __wake_up(x, TASK_INTERRUPTIBLE, 1, NULL)
161 #define wake_up_interruptible_nr(x, nr) __wake_up(x, TASK_INTERRUPTIBLE, nr, NULL)
162 #define wake_up_interruptible_all(x) __wake_up(x, TASK_INTERRUPTIBLE, 0, NULL)
163 #define wake_up_interruptible_sync(x) __wake_up_sync((x), TASK_INTERRUPTIBLE, 1)
165 #define __wait_event(wq, condition) \
167 DEFINE_WAIT(__wait); \
170 prepare_to_wait(&wq, &__wait, TASK_UNINTERRUPTIBLE); \
175 finish_wait(&wq, &__wait); \
179 * wait_event - sleep until a condition gets true
180 * @wq: the waitqueue to wait on
181 * @condition: a C expression for the event to wait for
183 * The process is put to sleep (TASK_UNINTERRUPTIBLE) until the
184 * @condition evaluates to true. The @condition is checked each time
185 * the waitqueue @wq is woken up.
187 * wake_up() has to be called after changing any variable that could
188 * change the result of the wait condition.
190 #define wait_event(wq, condition) \
194 __wait_event(wq, condition); \
197 #define __wait_event_timeout(wq, condition, ret) \
199 DEFINE_WAIT(__wait); \
202 prepare_to_wait(&wq, &__wait, TASK_UNINTERRUPTIBLE); \
205 ret = schedule_timeout(ret); \
209 finish_wait(&wq, &__wait); \
213 * wait_event_timeout - sleep until a condition gets true or a timeout elapses
214 * @wq: the waitqueue to wait on
215 * @condition: a C expression for the event to wait for
216 * @timeout: timeout, in jiffies
218 * The process is put to sleep (TASK_UNINTERRUPTIBLE) until the
219 * @condition evaluates to true. The @condition is checked each time
220 * the waitqueue @wq is woken up.
222 * wake_up() has to be called after changing any variable that could
223 * change the result of the wait condition.
225 * The function returns 0 if the @timeout elapsed, and the remaining
226 * jiffies if the condition evaluated to true before the timeout elapsed.
228 #define wait_event_timeout(wq, condition, timeout) \
230 long __ret = timeout; \
232 __wait_event_timeout(wq, condition, __ret); \
236 #define __wait_event_interruptible(wq, condition, ret) \
238 DEFINE_WAIT(__wait); \
241 prepare_to_wait(&wq, &__wait, TASK_INTERRUPTIBLE); \
244 if (!signal_pending(current)) { \
248 ret = -ERESTARTSYS; \
251 finish_wait(&wq, &__wait); \
255 * wait_event_interruptible - sleep until a condition gets true
256 * @wq: the waitqueue to wait on
257 * @condition: a C expression for the event to wait for
259 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
260 * @condition evaluates to true or a signal is received.
261 * The @condition is checked each time the waitqueue @wq is woken up.
263 * wake_up() has to be called after changing any variable that could
264 * change the result of the wait condition.
266 * The function will return -ERESTARTSYS if it was interrupted by a
267 * signal and 0 if @condition evaluated to true.
269 #define wait_event_interruptible(wq, condition) \
273 __wait_event_interruptible(wq, condition, __ret); \
277 #define __wait_event_interruptible_timeout(wq, condition, ret) \
279 DEFINE_WAIT(__wait); \
282 prepare_to_wait(&wq, &__wait, TASK_INTERRUPTIBLE); \
285 if (!signal_pending(current)) { \
286 ret = schedule_timeout(ret); \
291 ret = -ERESTARTSYS; \
294 finish_wait(&wq, &__wait); \
298 * wait_event_interruptible_timeout - sleep until a condition gets true or a timeout elapses
299 * @wq: the waitqueue to wait on
300 * @condition: a C expression for the event to wait for
301 * @timeout: timeout, in jiffies
303 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
304 * @condition evaluates to true or a signal is received.
305 * The @condition is checked each time the waitqueue @wq is woken up.
307 * wake_up() has to be called after changing any variable that could
308 * change the result of the wait condition.
310 * The function returns 0 if the @timeout elapsed, -ERESTARTSYS if it
311 * was interrupted by a signal, and the remaining jiffies otherwise
312 * if the condition evaluated to true before the timeout elapsed.
314 #define wait_event_interruptible_timeout(wq, condition, timeout) \
316 long __ret = timeout; \
318 __wait_event_interruptible_timeout(wq, condition, __ret); \
322 #define __wait_event_interruptible_exclusive(wq, condition, ret) \
324 DEFINE_WAIT(__wait); \
327 prepare_to_wait_exclusive(&wq, &__wait, \
328 TASK_INTERRUPTIBLE); \
331 if (!signal_pending(current)) { \
335 ret = -ERESTARTSYS; \
338 finish_wait(&wq, &__wait); \
341 #define wait_event_interruptible_exclusive(wq, condition) \
345 __wait_event_interruptible_exclusive(wq, condition, __ret);\
349 #define __wait_event_killable(wq, condition, ret) \
351 DEFINE_WAIT(__wait); \
354 prepare_to_wait(&wq, &__wait, TASK_KILLABLE); \
357 if (!fatal_signal_pending(current)) { \
361 ret = -ERESTARTSYS; \
364 finish_wait(&wq, &__wait); \
368 * wait_event_killable - sleep until a condition gets true
369 * @wq: the waitqueue to wait on
370 * @condition: a C expression for the event to wait for
372 * The process is put to sleep (TASK_KILLABLE) until the
373 * @condition evaluates to true or a signal is received.
374 * The @condition is checked each time the waitqueue @wq is woken up.
376 * wake_up() has to be called after changing any variable that could
377 * change the result of the wait condition.
379 * The function will return -ERESTARTSYS if it was interrupted by a
380 * signal and 0 if @condition evaluated to true.
382 #define wait_event_killable(wq, condition) \
386 __wait_event_killable(wq, condition, __ret); \
391 * Must be called with the spinlock in the wait_queue_head_t held.
393 static inline void add_wait_queue_exclusive_locked(wait_queue_head_t
*q
,
396 wait
->flags
|= WQ_FLAG_EXCLUSIVE
;
397 __add_wait_queue_tail(q
, wait
);
401 * Must be called with the spinlock in the wait_queue_head_t held.
403 static inline void remove_wait_queue_locked(wait_queue_head_t
*q
,
406 __remove_wait_queue(q
, wait
);
410 * These are the old interfaces to sleep waiting for an event.
411 * They are racy. DO NOT use them, use the wait_event* interfaces above.
412 * We plan to remove these interfaces.
414 extern void sleep_on(wait_queue_head_t
*q
);
415 extern long sleep_on_timeout(wait_queue_head_t
*q
,
416 signed long timeout
);
417 extern void interruptible_sleep_on(wait_queue_head_t
*q
);
418 extern long interruptible_sleep_on_timeout(wait_queue_head_t
*q
,
419 signed long timeout
);
422 * Waitqueues which are removed from the waitqueue_head at wakeup time
424 void FASTCALL(prepare_to_wait(wait_queue_head_t
*q
,
425 wait_queue_t
*wait
, int state
));
426 void FASTCALL(prepare_to_wait_exclusive(wait_queue_head_t
*q
,
427 wait_queue_t
*wait
, int state
));
428 void FASTCALL(finish_wait(wait_queue_head_t
*q
, wait_queue_t
*wait
));
429 int autoremove_wake_function(wait_queue_t
*wait
, unsigned mode
, int sync
, void *key
);
430 int wake_bit_function(wait_queue_t
*wait
, unsigned mode
, int sync
, void *key
);
432 #define DEFINE_WAIT(name) \
433 wait_queue_t name = { \
434 .private = current, \
435 .func = autoremove_wake_function, \
436 .task_list = LIST_HEAD_INIT((name).task_list), \
439 #define DEFINE_WAIT_BIT(name, word, bit) \
440 struct wait_bit_queue name = { \
441 .key = __WAIT_BIT_KEY_INITIALIZER(word, bit), \
443 .private = current, \
444 .func = wake_bit_function, \
446 LIST_HEAD_INIT((name).wait.task_list), \
450 #define init_wait(wait) \
452 (wait)->private = current; \
453 (wait)->func = autoremove_wake_function; \
454 INIT_LIST_HEAD(&(wait)->task_list); \
458 * wait_on_bit - wait for a bit to be cleared
459 * @word: the word being waited on, a kernel virtual address
460 * @bit: the bit of the word being waited on
461 * @action: the function used to sleep, which may take special actions
462 * @mode: the task state to sleep in
464 * There is a standard hashed waitqueue table for generic use. This
465 * is the part of the hashtable's accessor API that waits on a bit.
466 * For instance, if one were to have waiters on a bitflag, one would
467 * call wait_on_bit() in threads waiting for the bit to clear.
468 * One uses wait_on_bit() where one is waiting for the bit to clear,
469 * but has no intention of setting it.
471 static inline int wait_on_bit(void *word
, int bit
,
472 int (*action
)(void *), unsigned mode
)
474 if (!test_bit(bit
, word
))
476 return out_of_line_wait_on_bit(word
, bit
, action
, mode
);
480 * wait_on_bit_lock - wait for a bit to be cleared, when wanting to set it
481 * @word: the word being waited on, a kernel virtual address
482 * @bit: the bit of the word being waited on
483 * @action: the function used to sleep, which may take special actions
484 * @mode: the task state to sleep in
486 * There is a standard hashed waitqueue table for generic use. This
487 * is the part of the hashtable's accessor API that waits on a bit
488 * when one intends to set it, for instance, trying to lock bitflags.
489 * For instance, if one were to have waiters trying to set bitflag
490 * and waiting for it to clear before setting it, one would call
491 * wait_on_bit() in threads waiting to be able to set the bit.
492 * One uses wait_on_bit_lock() where one is waiting for the bit to
493 * clear with the intention of setting it, and when done, clearing it.
495 static inline int wait_on_bit_lock(void *word
, int bit
,
496 int (*action
)(void *), unsigned mode
)
498 if (!test_and_set_bit(bit
, word
))
500 return out_of_line_wait_on_bit_lock(word
, bit
, action
, mode
);
503 #endif /* __KERNEL__ */