From 665f9c14734b76c4080be9499fa55ab4d855e641 Mon Sep 17 00:00:00 2001 From: Raphael Coeffic Date: Fri, 22 Feb 2008 08:38:35 +0000 Subject: [PATCH] After some researches, it looks like SIGCHLD should never be sent for a dying thread. That's why AmConfig::IgnoreSIGCHLD is now set to true as a default. We may discuss later wether this parameter can/should be removed. git-svn-id: http://svn.berlios.de/svnroot/repos/sems/trunk@746 8eb893ce-cfd4-0310-b710-fb5ebe64c474 --- core/AmConfig.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/AmConfig.cpp b/core/AmConfig.cpp index a1572ef1..3c50fc3a 100644 --- a/core/AmConfig.cpp +++ b/core/AmConfig.cpp @@ -66,7 +66,7 @@ vector AmConfig::CodecOrder; Dtmf::InbandDetectorType AmConfig::DefaultDTMFDetector = Dtmf::SEMSInternal; -bool AmConfig::IgnoreSIGCHLD = false; +bool AmConfig::IgnoreSIGCHLD = true; AmSessionTimerConfig AmConfig::defaultSessionTimerConfig;