diff options
Diffstat (limited to 'linux/wait.c')
-rw-r--r-- | linux/wait.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/linux/wait.c b/linux/wait.c index 991875c5..b1f002b9 100644 --- a/linux/wait.c +++ b/linux/wait.c @@ -66,6 +66,11 @@ void wake_up(wait_queue_head_t *q) __wake_up(q, TASK_NORMAL, 1, NULL); } +void wake_up_all(wait_queue_head_t *q) +{ + __wake_up(q, TASK_NORMAL, 0, NULL); +} + static void __wake_up_locked(wait_queue_head_t *q, unsigned int mode, int nr) { __wake_up_common(q, mode, nr, 0, NULL); |