diff options
author | Matthew Wilcox <matthew@wil.cx> | 2007-12-06 18:29:54 +0100 |
---|---|---|
committer | Matthew Wilcox <willy@linux.intel.com> | 2007-12-06 23:40:19 +0100 |
commit | 009e577e079656d51d0fe9b15e61e41b00816c29 (patch) | |
tree | bc0f1ac69dae6c845f1d02b710bf9073a7d8616a /include | |
parent | Add wait_event_killable (diff) | |
download | linux-009e577e079656d51d0fe9b15e61e41b00816c29.tar.xz linux-009e577e079656d51d0fe9b15e61e41b00816c29.zip |
Add wait_for_completion_killable
Signed-off-by: Matthew Wilcox <willy@linux.intel.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/completion.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/completion.h b/include/linux/completion.h index 33d6aaf94447..d2961b66d53d 100644 --- a/include/linux/completion.h +++ b/include/linux/completion.h @@ -44,6 +44,7 @@ static inline void init_completion(struct completion *x) extern void wait_for_completion(struct completion *); extern int wait_for_completion_interruptible(struct completion *x); +extern int wait_for_completion_killable(struct completion *x); extern unsigned long wait_for_completion_timeout(struct completion *x, unsigned long timeout); extern unsigned long wait_for_completion_interruptible_timeout( |