Home
last modified time | relevance | path

Searched refs:waitq_front (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/libc/src/threads/linux/
H A DCndVar.h35 CndWaiter *waitq_front; member
40 cv->waitq_front = cv->waitq_back = nullptr; in init()
63 if (waitq_front == nullptr) { in wait()
64 waitq_front = waitq_back = &waiter; in wait()
79 waitq_front = nullptr; in wait()
100 if (waitq_front == nullptr) { in notify_one()
105 CndWaiter *first = waitq_front; in notify_one()
106 waitq_front = waitq_front->next; in notify_one()
107 if (waitq_front == nullptr) in notify_one()
122 CndWaiter *waiter = waitq_front; in broadcast()
[all …]