summaryrefslogtreecommitdiffstats
path: root/tcpsrv.c
diff options
context:
space:
mode:
Diffstat (limited to 'tcpsrv.c')
-rw-r--r--tcpsrv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tcpsrv.c b/tcpsrv.c
index 0e6e13d2..e5fe0d71 100644
--- a/tcpsrv.c
+++ b/tcpsrv.c
@@ -1335,7 +1335,7 @@ startWorkerPool(void)
wrkrRunning = 0;
pthread_cond_init(&wrkrIdle, NULL);
pthread_attr_init(&sessThrdAttr);
- pthread_attr_setstacksize(&sessThrdAttr, 200*1024);
+ pthread_attr_setstacksize(&sessThrdAttr, 4096*1024);
for(i = 0 ; i < wrkrMax ; ++i) {
/* init worker info structure! */
pthread_cond_init(&wrkrInfo[i].run, NULL);