aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/completion.h
diff options
context:
space:
mode:
authorBjoern B. Brandenburg <bbb@cs.unc.edu>2009-12-07 19:05:16 -0500
committerBjoern B. Brandenburg <bbb@cs.unc.edu>2009-12-08 12:44:51 -0500
commit735a96eeb485018d53ffb9548dacc8a9ab143582 (patch)
treecafcdb3966befbef3f8671214aa650f6eaffd6c8 /include/linux/completion.h
parent8e305c54a9f1ed0c0c181b40487aae13791b6e4f (diff)
Add complete_n() call.
Diffstat (limited to 'include/linux/completion.h')
-rw-r--r--include/linux/completion.h2
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
52extern void complete(struct completion *); 52extern void complete(struct completion *);
53extern void complete_all(struct completion *); 53extern void complete_all(struct completion *);
54 54extern 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