diff options
author | Bjoern B. Brandenburg <bbb@cs.unc.edu> | 2009-12-07 19:05:16 -0500 |
---|---|---|
committer | Bjoern B. Brandenburg <bbb@cs.unc.edu> | 2009-12-08 12:44:51 -0500 |
commit | 735a96eeb485018d53ffb9548dacc8a9ab143582 (patch) | |
tree | cafcdb3966befbef3f8671214aa650f6eaffd6c8 /include/linux/completion.h | |
parent | 8e305c54a9f1ed0c0c181b40487aae13791b6e4f (diff) |
Add complete_n() call.
Diffstat (limited to 'include/linux/completion.h')
-rw-r--r-- | include/linux/completion.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/completion.h b/include/linux/completion.h index 33d6aaf94447..5b55e972be2c 100644 --- a/include/linux/completion.h +++ b/include/linux/completion.h | |||
@@ -51,7 +51,7 @@ extern unsigned long wait_for_completion_interruptible_timeout( | |||
51 | 51 | ||
52 | extern void complete(struct completion *); | 52 | extern void complete(struct completion *); |
53 | extern void complete_all(struct completion *); | 53 | extern void complete_all(struct completion *); |
54 | 54 | extern void complete_n(struct completion *, int n); | |
55 | #define INIT_COMPLETION(x) ((x).done = 0) | 55 | #define INIT_COMPLETION(x) ((x).done = 0) |
56 | 56 | ||
57 | #endif | 57 | #endif |