Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/libc/src/__support/threads/linux/
H A DCndVar.cpp35 if (waitq_front == nullptr) { in wait()
36 waitq_front = waitq_back = &waiter; in wait()
51 waitq_front = nullptr; in wait()
71 if (waitq_front == nullptr) in notify_one()
74 CndWaiter *first = waitq_front; in notify_one()
75 waitq_front = waitq_front->next; in notify_one()
76 if (waitq_front == nullptr) in notify_one()
91 CndWaiter *waiter = waitq_front; in broadcast()
92 waitq_front = waitq_back = nullptr; in broadcast()
/freebsd/contrib/llvm-project/libc/src/__support/threads/
H A DCndVar.h32 CndWaiter *waitq_front; variable
38 cv->waitq_front = cv->waitq_back = nullptr; in init()
44 cv->waitq_front = cv->waitq_back = nullptr; in destroy()