[asterisk-commits] lmadsen: tag 1.6.2.9-rc3 r269747 - in /tags/1.6.2.9-rc3: ./ main/ utils/
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Jun 10 09:25:20 CDT 2010
Author: lmadsen
Date: Thu Jun 10 09:25:16 2010
New Revision: 269747
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=269747
Log:
Merge changes in 269637 and update ChangeLog.
Modified:
tags/1.6.2.9-rc3/ChangeLog
tags/1.6.2.9-rc3/main/asterisk.c
tags/1.6.2.9-rc3/main/logger.c
tags/1.6.2.9-rc3/utils/extconf.c
Modified: tags/1.6.2.9-rc3/ChangeLog
URL: http://svnview.digium.com/svn/asterisk/tags/1.6.2.9-rc3/ChangeLog?view=diff&rev=269747&r1=269746&r2=269747
==============================================================================
--- tags/1.6.2.9-rc3/ChangeLog (original)
+++ tags/1.6.2.9-rc3/ChangeLog Thu Jun 10 09:25:16 2010
@@ -1,6 +1,17 @@
-2010-06-09 Leif Madsen <lmadsen at digium.com>
+2010-06-10 Leif Madsen <lmadsen at digium.com>
* Asterisk 1.6.2.9-rc3 Released.
+
+2010-06-10 Tilghman Lesher <tlesher at digium.com>
+
+ * Ensure signals are not blocked inside other signal handlers.
+
+ This eliminates the annoying <beep> on the console.
+
+ (closes issue 0017477)
+ Reported by: jvandal
+ Patches:
+ 20100610__issue17477.diff.txt uploaded by tilghman (license 14
2010-06-09 Paul Belanger <paul.belanger at polybeacon.com>
Modified: tags/1.6.2.9-rc3/main/asterisk.c
URL: http://svnview.digium.com/svn/asterisk/tags/1.6.2.9-rc3/main/asterisk.c?view=diff&rev=269747&r1=269746&r2=269747
==============================================================================
--- tags/1.6.2.9-rc3/main/asterisk.c (original)
+++ tags/1.6.2.9-rc3/main/asterisk.c Thu Jun 10 09:25:16 2010
@@ -972,6 +972,7 @@
static struct sigaction null_sig_handler = {
.sa_handler = _null_sig_handler,
+ .sa_flags = SA_RESTART,
};
static struct sigaction ignore_sig_handler = {
@@ -1449,6 +1450,7 @@
static struct sigaction urg_handler = {
.sa_handler = _urg_handler,
+ .sa_flags = SA_RESTART,
};
static void _hup_handler(int num)
@@ -1468,6 +1470,7 @@
static struct sigaction hup_handler = {
.sa_handler = _hup_handler,
+ .sa_flags = SA_RESTART,
};
static void _child_handler(int sig)
@@ -1486,6 +1489,7 @@
static struct sigaction child_handler = {
.sa_handler = _child_handler,
+ .sa_flags = SA_RESTART,
};
/*! \brief Set maximum open files */
Modified: tags/1.6.2.9-rc3/main/logger.c
URL: http://svnview.digium.com/svn/asterisk/tags/1.6.2.9-rc3/main/logger.c?view=diff&rev=269747&r1=269746&r2=269747
==============================================================================
--- tags/1.6.2.9-rc3/main/logger.c (original)
+++ tags/1.6.2.9-rc3/main/logger.c Thu Jun 10 09:25:16 2010
@@ -835,6 +835,7 @@
static struct sigaction handle_SIGXFSZ = {
.sa_handler = _handle_SIGXFSZ,
+ .sa_flags = SA_RESTART,
};
static void ast_log_vsyslog(int level, const char *file, int line, const char *function, char *str, long pid)
Modified: tags/1.6.2.9-rc3/utils/extconf.c
URL: http://svnview.digium.com/svn/asterisk/tags/1.6.2.9-rc3/utils/extconf.c?view=diff&rev=269747&r1=269746&r2=269747
==============================================================================
--- tags/1.6.2.9-rc3/utils/extconf.c (original)
+++ tags/1.6.2.9-rc3/utils/extconf.c Thu Jun 10 09:25:16 2010
@@ -1268,6 +1268,7 @@
static struct sigaction null_sig_handler = {
.sa_handler = _null_sig_handler,
+ .sa_flags = SA_RESTART,
};
void ast_replace_sigchld(void);
More information about the asterisk-commits
mailing list