diff options
Diffstat (limited to 'include/linux/completion.h')
-rw-r--r-- | include/linux/completion.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/completion.h b/include/linux/completion.h index 51494e6b5548..33f0280fd533 100644 --- a/include/linux/completion.h +++ b/include/linux/completion.h | |||
@@ -77,10 +77,13 @@ static inline void init_completion(struct completion *x) | |||
77 | } | 77 | } |
78 | 78 | ||
79 | extern void wait_for_completion(struct completion *); | 79 | extern void wait_for_completion(struct completion *); |
80 | extern void wait_for_completion_io(struct completion *); | ||
80 | extern int wait_for_completion_interruptible(struct completion *x); | 81 | extern int wait_for_completion_interruptible(struct completion *x); |
81 | extern int wait_for_completion_killable(struct completion *x); | 82 | extern int wait_for_completion_killable(struct completion *x); |
82 | extern unsigned long wait_for_completion_timeout(struct completion *x, | 83 | extern unsigned long wait_for_completion_timeout(struct completion *x, |
83 | unsigned long timeout); | 84 | unsigned long timeout); |
85 | extern unsigned long wait_for_completion_io_timeout(struct completion *x, | ||
86 | unsigned long timeout); | ||
84 | extern long wait_for_completion_interruptible_timeout( | 87 | extern long wait_for_completion_interruptible_timeout( |
85 | struct completion *x, unsigned long timeout); | 88 | struct completion *x, unsigned long timeout); |
86 | extern long wait_for_completion_killable_timeout( | 89 | extern long wait_for_completion_killable_timeout( |