aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/wait.h
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2009-05-11 06:59:32 -0400
committerIngo Molnar <mingo@elte.hu>2009-05-11 06:59:37 -0400
commit7961386fe9596e6bf03d09948a73c5df9653325b (patch)
tree60fa2586a0d340ef8f7473956eef17430d8250c7 /include/linux/wait.h
parentaa47b7e0f89b9998dad4d1667447e8cb7703ff4e (diff)
parent091bf7624d1c90cec9e578a18529f615213ff847 (diff)
Merge commit 'v2.6.30-rc5' into sched/core
Merge reason: sched/core was on .30-rc1 before, update to latest fixes Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/linux/wait.h')
-rw-r--r--include/linux/wait.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/linux/wait.h b/include/linux/wait.h
index 67d4e89b62d..6788e1a4d4c 100644
--- a/include/linux/wait.h
+++ b/include/linux/wait.h
@@ -438,13 +438,15 @@ void abort_exclusive_wait(wait_queue_head_t *q, wait_queue_t *wait,
438int autoremove_wake_function(wait_queue_t *wait, unsigned mode, int sync, void *key); 438int autoremove_wake_function(wait_queue_t *wait, unsigned mode, int sync, void *key);
439int wake_bit_function(wait_queue_t *wait, unsigned mode, int sync, void *key); 439int wake_bit_function(wait_queue_t *wait, unsigned mode, int sync, void *key);
440 440
441#define DEFINE_WAIT(name) \ 441#define DEFINE_WAIT_FUNC(name, function) \
442 wait_queue_t name = { \ 442 wait_queue_t name = { \
443 .private = current, \ 443 .private = current, \
444 .func = autoremove_wake_function, \ 444 .func = function, \
445 .task_list = LIST_HEAD_INIT((name).task_list), \ 445 .task_list = LIST_HEAD_INIT((name).task_list), \
446 } 446 }
447 447
448#define DEFINE_WAIT(name) DEFINE_WAIT_FUNC(name, autoremove_wake_function)
449
448#define DEFINE_WAIT_BIT(name, word, bit) \ 450#define DEFINE_WAIT_BIT(name, word, bit) \
449 struct wait_bit_queue name = { \ 451 struct wait_bit_queue name = { \
450 .key = __WAIT_BIT_KEY_INITIALIZER(word, bit), \ 452 .key = __WAIT_BIT_KEY_INITIALIZER(word, bit), \