mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-31 02:49:28 -05:00
Set stack size for created threads
This commit is contained in:
parent
8ca394496b
commit
bbdc869d7a
1 changed files with 2 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue