Home | History | Annotate | Download | only in internal

Lines Matching refs:Ready

190     Ready,          // Is not working, has not yet received new work to do.
218 assert(new_state == State::Ready);
220 case State::Ready:
225 assert(new_state == State::Ready ||
233 if (state_ == State::Ready) {
244 ChangeState(State::Ready);
249 // In the 'Ready' state, we have nothing to do but to wait until
252 &state_, State::Ready, &state_cond_, &state_mutex_);
257 // Got work to do! So do it, and then revert to 'Ready' state.
262 ChangeState(State::Ready);
283 assert(state_ == State::Ready);
306 // master thread of when this worker switches to the 'Ready' state.
336 // be ready.