From: Kurt Zeilenga Date: Sat, 15 Feb 2003 16:42:26 +0000 (+0000) Subject: set stack size X-Git-Tag: OPENLDAP_REL_ENG_2_1_13~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f23c7c7130171c24cdb43f93d13ea682f0c561d6;p=thirdparty%2Fopenldap.git set stack size --- diff --git a/libraries/libldap_r/thr_thr.c b/libraries/libldap_r/thr_thr.c index 17e4ef8d9d..feb42a95d5 100644 --- a/libraries/libldap_r/thr_thr.c +++ b/libraries/libldap_r/thr_thr.c @@ -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