Disable thread pooling while I fix the deadlock.

This commit is contained in:
Mark Valence 2000-06-08 02:07:49 +00:00
parent 61be4bd0c8
commit da355b317e

View File

@ -306,6 +306,8 @@ ldap_pvt_thread_pool_submit ( ldap_pvt_thread_pool_t pool, void *(*start_routine
int need_thread = 0;
ldap_pvt_thread_t thr;
return ldap_pvt_thread_create( &thr, 1, (void *)start_routine, arg );
if (pool == NULL)
return(-1);