summaryrefslogtreecommitdiff
path: root/utils/extconf.c
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2010-06-10 08:15:45 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2010-06-10 08:15:45 +0000
commit5d313f51b982a18f7321adcf7c7a4e822d8b2714 (patch)
treea984cce4c09e567d1518b66fd58c80794a665025 /utils/extconf.c
parent8f92f95530b5ef609fdfb0505e9553b5113679de (diff)
Merged revisions 269635 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r269635 | tilghman | 2010-06-10 02:52:34 -0500 (Thu, 10 Jun 2010) | 9 lines Ensure restartable system calls can restart (BSD signal semantics). This eliminates the annoying <beep> on the console. (closes issue #17477) Reported by: jvandal Patches: 20100610__issue17477.diff.txt uploaded by tilghman (license 14) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@269636 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'utils/extconf.c')
-rw-r--r--utils/extconf.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/extconf.c b/utils/extconf.c
index 992126728..22df962e7 100644
--- a/utils/extconf.c
+++ b/utils/extconf.c
@@ -1269,6 +1269,7 @@ static void _null_sig_handler(int sig)
static struct sigaction null_sig_handler = {
.sa_handler = _null_sig_handler,
+ .sa_flags = SA_RESTART,
};
void ast_replace_sigchld(void);