From ec579b68aeb60031097a0473811856512b2a2888 Mon Sep 17 00:00:00 2001 From: tilghman Date: Thu, 10 Jun 2010 08:15:45 +0000 Subject: 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 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/trunk@269636 f38db490-d61c-443f-a65b-d21fe96a405b --- utils/extconf.c | 1 + 1 file changed, 1 insertion(+) (limited to 'utils') 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); -- cgit v1.2.3