From 5d313f51b982a18f7321adcf7c7a4e822d8b2714 Mon Sep 17 00:00:00 2001 From: Tilghman Lesher 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: https://origsvn.digium.com/svn/asterisk/trunk@269636 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- main/logger.c | 1 + 1 file changed, 1 insertion(+) (limited to 'main/logger.c') diff --git a/main/logger.c b/main/logger.c index fa57a0563..53b7bb3df 100644 --- a/main/logger.c +++ b/main/logger.c @@ -764,6 +764,7 @@ static void _handle_SIGXFSZ(int sig) static struct sigaction handle_SIGXFSZ = { .sa_handler = _handle_SIGXFSZ, + .sa_flags = SA_RESTART, }; static void ast_log_vsyslog(struct logmsg *msg) -- cgit v1.2.3