diff options
author | Bjoern Brandenburg <bbb@mpi-sws.org> | 2012-09-07 08:28:59 -0400 |
---|---|---|
committer | Bjoern Brandenburg <bbb@mpi-sws.org> | 2012-10-18 14:29:36 -0400 |
commit | d245619060965c2f379fadf6103e7b69a2d1e951 (patch) | |
tree | 81c6020947cddd847393d440482b45d3ff6347af /include/linux | |
parent | 56faaa8985834035e955a522ca451aebd420178c (diff) |
Remove complete_n() API
The LITMUS^RT-specific completion API complete_n() is no longer
required by the synchronous release code. Let's remove it; one less
modification of a core Linux file to maintain during rebasing.
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/completion.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/completion.h b/include/linux/completion.h index 9d727271c9fe..51494e6b5548 100644 --- a/include/linux/completion.h +++ b/include/linux/completion.h | |||
@@ -90,7 +90,6 @@ extern bool completion_done(struct completion *x); | |||
90 | 90 | ||
91 | extern void complete(struct completion *); | 91 | extern void complete(struct completion *); |
92 | extern void complete_all(struct completion *); | 92 | extern void complete_all(struct completion *); |
93 | extern void complete_n(struct completion *, int n); | ||
94 | 93 | ||
95 | /** | 94 | /** |
96 | * INIT_COMPLETION - reinitialize a completion structure | 95 | * INIT_COMPLETION - reinitialize a completion structure |