aboutsummaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2010-06-10 08:16:44 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2010-06-10 08:16:44 +0000
commit309f58262550a3219fac3fd94eb495226bbcdb80 (patch)
treef81200baf047976a6cb20f8be981bf31c465b458 /utils
parent206ccd08dcd53713cf5fb2484a7edbc9336d3e83 (diff)
Merged revisions 269636 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ................ r269636 | tilghman | 2010-06-10 03:15:45 -0500 (Thu, 10 Jun 2010) | 16 lines 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: http://svn.digium.com/svn/asterisk/branches/1.6.2@269637 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'utils')
-rw-r--r--utils/extconf.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/extconf.c b/utils/extconf.c
index 2b3a5c65d..572d56113 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);