Lines Matching refs:waitSet
77 Thread* waitSet; /* threads currently waiting on this monitor */ member
482 fast = slow = mon->waitSet; in waitSetCheck()
508 if (mon->waitSet == NULL) { in waitSetAppend()
509 mon->waitSet = thread; in waitSetAppend()
512 elt = mon->waitSet; in waitSetAppend()
531 if (mon->waitSet == NULL) { in waitSetRemove()
534 if (mon->waitSet == thread) { in waitSetRemove()
535 mon->waitSet = thread->waitNext; in waitSetRemove()
539 elt = mon->waitSet; in waitSetRemove()
784 while (mon->waitSet != NULL) { in notifyMonitor()
785 thread = mon->waitSet; in notifyMonitor()
786 mon->waitSet = thread->waitNext; in notifyMonitor()
816 while (mon->waitSet != NULL) { in notifyAllMonitor()
817 thread = mon->waitSet; in notifyAllMonitor()
818 mon->waitSet = thread->waitNext; in notifyAllMonitor()