Fix wakeup condition

pull/10932/head
Craig Tiller 8 years ago
parent 32f90eec45
commit c9b09e98fd
  1. 2
      src/core/lib/iomgr/ev_epoll1_linux.c

@ -713,7 +713,7 @@ static grpc_error *pollset_kick(grpc_pollset *pollset,
} else {
return GRPC_ERROR_NONE;
}
} else if (specific_worker->kick_state != KICKED) {
} else if (specific_worker->kick_state != UNKICKED) {
return GRPC_ERROR_NONE;
} else if (gpr_tls_get(&g_current_thread_worker) ==
(intptr_t)specific_worker) {

Loading…
Cancel
Save