From e93e62e29ba18e4c8b2dfc5b5ae22c721a52d9f0 Mon Sep 17 00:00:00 2001 From: Mark Spencer Date: Tue, 22 Mar 2005 20:34:04 +0000 Subject: Ignore interrupted system calls (bug #3831) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5231 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- file.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'file.c') diff --git a/file.c b/file.c index 85e66a781..b2e370cc4 100755 --- a/file.c +++ b/file.c @@ -1081,6 +1081,9 @@ char ast_waitstream_full(struct ast_channel *c, const char *breakon, int audiofd ms = 1000; rchan = ast_waitfor_nandfds(&c, 1, &cmdfd, (cmdfd > -1) ? 1 : 0, NULL, &outfd, &ms); if (!rchan && (outfd < 0) && (ms)) { + /* Continue */ + if (errno == EINTR) + continue; ast_log(LOG_WARNING, "Wait failed (%s)\n", strerror(errno)); return -1; } else if (outfd > -1) { -- cgit v1.2.3