1WAIT_FOR_COMPLETION(9) Driver Basics WAIT_FOR_COMPLETION(9)
2
3
4
6 wait_for_completion - waits for completion of a task
7
9 void __sched wait_for_completion(struct completion * x);
10
12 x
13 holds the state of this particular completion
14
16 This waits to be signaled for completion of a specific task. It is NOT
17 interruptible and there is no timeout.
18
19 See also similar routines (i.e. wait_for_completion_timeout) with
20 timeout and interrupt capability. Also see complete.
21
23Kernel Hackers Manual 2.6. June 2019 WAIT_FOR_COMPLETION(9)