Home | History | Annotate | Download | only in linux

Lines Matching refs:completion

7  * Atomic wait-for-completion handler data structures.
13 struct completion {
25 struct completion work = COMPLETION_INITIALIZER(work)
34 struct completion work = COMPLETION_INITIALIZER_ONSTACK(work)
39 static inline void init_completion(struct completion *x)
45 extern void FASTCALL(wait_for_completion(struct completion *));
46 extern int FASTCALL(wait_for_completion_interruptible(struct completion *x));
47 extern unsigned long FASTCALL(wait_for_completion_timeout(struct completion *x,
50 struct completion *x, unsigned long timeout));
52 extern void FASTCALL(complete(struct completion *));
53 extern void FASTCALL(complete_all(struct completion *));