set stack size

This commit is contained in:
Kurt Zeilenga 2003-02-15 16:42:26 +00:00
parent 1ceed99b8e
commit f23c7c7130

View file

@ -57,9 +57,8 @@ ldap_pvt_thread_create( ldap_pvt_thread_t * thread,
void *(*start_routine)( void *),
void *arg)
{
return( thr_create( NULL, 0, start_routine, arg,
detach ? THR_DETACHED : 0,
thread ) );
return( thr_create( NULL, LDAP_PVT_THREAD_STACK_SIZE, start_routine,
arg, detach ? THR_DETACHED : 0, thread ) );
}
void