Home | History | Annotate | Download | only in libpthread

Lines Matching refs:ptc_waiters

92 	cond->ptc_waiters = NULL;
116 cond->ptc_waiters == NULL);
154 for (head = cond->ptc_waiters;; head = next) {
158 next = cond->ptc_waiters;
166 next = atomic_cas_ptr(&cond->ptc_waiters, head, &waiter);
252 for (head = cond->ptc_waiters;; head = next) {
256 next = cond->ptc_waiters;
263 next = atomic_cas_ptr(&cond->ptc_waiters, head,
272 cond->ptc_waiters = head->next;
294 if (cond->ptc_waiters == NULL)
300 for (head = cond->ptc_waiters;; head = next) {
304 next = cond->ptc_waiters;
310 next = atomic_cas_ptr(&cond->ptc_waiters, head, NULL);
326 return cond->ptc_waiters != NULL;