X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=include%2Flinux%2Fcompletion.h;h=90663ad217f983635231dc3550d7ac1fc8b18bee;hb=6a77f38946aaee1cd85eeec6cf4229b204c15071;hp=b8d7ed948470b569e61cf16a142ce112cd00e021;hpb=87fc8d1bb10cd459024a742c6a10961fefcef18f;p=linux-2.6.git diff --git a/include/linux/completion.h b/include/linux/completion.h index b8d7ed948..90663ad21 100644 --- a/include/linux/completion.h +++ b/include/linux/completion.h @@ -28,6 +28,12 @@ static inline void init_completion(struct completion *x) } extern void FASTCALL(wait_for_completion(struct completion *)); +extern int FASTCALL(wait_for_completion_interruptible(struct completion *x)); +extern unsigned long FASTCALL(wait_for_completion_timeout(struct completion *x, + unsigned long timeout)); +extern unsigned long FASTCALL(wait_for_completion_interruptible_timeout( + struct completion *x, unsigned long timeout)); + extern void FASTCALL(complete(struct completion *)); extern void FASTCALL(complete_all(struct completion *));