From afe402d2418d181a1fd5f469ec4c4cf5c394d8c5 Mon Sep 17 00:00:00 2001 From: Andre Lorbach Date: Wed, 11 Jul 2012 03:08:32 -0700 Subject: bugfix: imtcp aborted when more than 2 connections were used. Incremented pthread stack size to 4MB for imtcp, imptcp and imttcp closes: http://bugzilla.adiscon.com/show_bug.cgi?id=342 --- tcpsrv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tcpsrv.c') 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); -- cgit