1COMPLETE_ALL(9) Driver Basics COMPLETE_ALL(9)
2
3
4
6 complete_all - signals all threads waiting on this completion
7
9 void complete_all(struct completion * x);
10
12 x
13 holds the state of this particular completion
14
16 This will wake up all threads waiting on this particular completion
17 event.
18
19 It may be assumed that this function implies a write memory barrier
20 before changing the task state if and only if any tasks are woken up.
21
23Kernel Hackers Manual 3.10 June 2019 COMPLETE_ALL(9)