Lines Matching refs:waitNext
479 if (fast->waitNext == NULL) return 0; in waitSetCheck()
482 fast = fast->waitNext->waitNext; in waitSetCheck()
483 slow = slow->waitNext; in waitSetCheck()
499 assert(thread->waitNext == NULL); in waitSetAppend()
506 while (elt->waitNext != NULL) { in waitSetAppend()
507 elt = elt->waitNext; in waitSetAppend()
509 elt->waitNext = thread; in waitSetAppend()
528 mon->waitSet = thread->waitNext; in waitSetRemove()
529 thread->waitNext = NULL; in waitSetRemove()
533 while (elt->waitNext != NULL) { in waitSetRemove()
534 if (elt->waitNext == thread) { in waitSetRemove()
535 elt->waitNext = thread->waitNext; in waitSetRemove()
536 thread->waitNext = NULL; in waitSetRemove()
539 elt = elt->waitNext; in waitSetRemove()
780 mon->waitSet = thread->waitNext; in notifyMonitor()
781 thread->waitNext = NULL; in notifyMonitor()
812 mon->waitSet = thread->waitNext; in notifyAllMonitor()
813 thread->waitNext = NULL; in notifyAllMonitor()