Skip to content
Snippets Groups Projects
Commit 71514ffb authored by Howard Chu's avatar Howard Chu
Browse files

Fix pool_submit, create threads as long as we're under the max count.

parent 675cda1b
No related branches found
No related tags found
No related merge requests found
......@@ -368,13 +368,8 @@ ldap_pvt_thread_pool_submit (
return(0);
}
ldap_pvt_thread_cond_signal(&pool->ltp_cond);
if ((pool->ltp_open_count <= 0
#if 0
|| pool->ltp_pending_count > 1
#endif
|| pool->ltp_open_count == pool->ltp_active_count)
&& (pool->ltp_max_count <= 0
|| pool->ltp_open_count < pool->ltp_max_count))
if (pool->ltp_max_count <= 0
|| pool->ltp_open_count < pool->ltp_max_count)
{
pool->ltp_open_count++;
pool->ltp_starting++;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment