170
171
thread_var->current_cond= &thread_var->suspend;
171
172
data->cond= &thread_var->suspend;;
175
174
while (!thread_var->abort || in_wait_list)
178
pthread_cond_timedwait(cond->native_handle(), data->lock->native_handle()->native_handle(), &wait_timeout) :
181
195
We must break the wait if one of the following occurs:
182
196
- the connection has been aborted (!thread_var->abort), but