Home | History | Annotate | Download | only in generic

Lines Matching defs:waiting

35 	int waiting;
51 cond->waiting = cond->signals = 0;
79 /* Restart one of the threads that are waiting on the condition variable */
87 /* If there are waiting threads not already signalled, then
91 if ( cond->waiting > cond->signals ) {
103 /* Restart all threads that are waiting on the condition variable */
111 /* If there are waiting threads not already signalled, then
115 if ( cond->waiting > cond->signals ) {
118 num_waiting = (cond->waiting - cond->signals);
119 cond->signals = cond->waiting;
123 /* Now all released threads are blocked here, waiting for us.
168 are waiting threads.
171 ++cond->waiting;
202 --cond->waiting;