summaryrefslogtreecommitdiffstats
path: root/plugins/imptcp
diff options
context:
space:
mode:
authorAndre Lorbach <alorbach@adiscon.com>2012-07-11 03:08:32 -0700
committerAndre Lorbach <alorbach@adiscon.com>2012-07-11 03:08:32 -0700
commitafe402d2418d181a1fd5f469ec4c4cf5c394d8c5 (patch)
treee9e168b4e3c046cedd7bf56b194f5d383d979d53 /plugins/imptcp
parent68056a6128b9ebc8d65791b2647030d36c73f014 (diff)
downloadrsyslog-afe402d2418d181a1fd5f469ec4c4cf5c394d8c5.tar.gz
rsyslog-afe402d2418d181a1fd5f469ec4c4cf5c394d8c5.tar.xz
rsyslog-afe402d2418d181a1fd5f469ec4c4cf5c394d8c5.zip
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
Diffstat (limited to 'plugins/imptcp')
-rw-r--r--plugins/imptcp/imptcp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/imptcp/imptcp.c b/plugins/imptcp/imptcp.c
index 6961a696..b63e7ca3 100644
--- a/plugins/imptcp/imptcp.c
+++ b/plugins/imptcp/imptcp.c
@@ -1587,7 +1587,7 @@ CODEmodInit_QueryRegCFSLineHdlr
/* initialize "read-only" thread attributes */
pthread_attr_init(&wrkrThrdAttr);
- pthread_attr_setstacksize(&wrkrThrdAttr, 2048*1024);
+ pthread_attr_setstacksize(&wrkrThrdAttr, 4096*1024);
/* init legacy config settings */
initConfigSettings();