Increase default stacksize

This commit is contained in:
z3APA3A 2018-04-21 01:29:15 +03:00
parent d1b527b523
commit e469e9e369
3 changed files with 2 additions and 6 deletions

View File

@ -72,11 +72,7 @@ struct extparam conf = {
NULL,
NULL,
NULL,
#ifdef __FreeBSD__
8192,
#else
0,
#endif
0, -1, 0, 0, 0, 0,
0, 500, 0, 0, 0, 0,
6, 600,

View File

@ -161,7 +161,7 @@ int start_proxy_thread(struct child * chp){
if(h)CloseHandle(h);
#else
pthread_attr_init(&pa);
pthread_attr_setstacksize(&pa,PTHREAD_STACK_MIN + (16384+conf.stacksize));
pthread_attr_setstacksize(&pa,PTHREAD_STACK_MIN + (32768+conf.stacksize));
pthread_attr_setdetachstate(&pa,PTHREAD_CREATE_DETACHED);
pthread_create(&thread, &pa, startsrv, (void *)chp);
pthread_attr_destroy(&pa);

View File

@ -647,7 +647,7 @@ int MODULEMAINFUNC (int argc, char** argv){
#ifndef _WIN32
pthread_attr_init(&pa);
pthread_attr_setstacksize(&pa,PTHREAD_STACK_MIN + (16384 + srv.stacksize));
pthread_attr_setstacksize(&pa,PTHREAD_STACK_MIN + (32768 + srv.stacksize));
pthread_attr_setdetachstate(&pa,PTHREAD_CREATE_DETACHED);
#endif