Ignore interrupted system calls (bug #3831)
authorMark Spencer <markster@digium.com>
Tue, 22 Mar 2005 20:34:04 +0000 (20:34 +0000)
committerMark Spencer <markster@digium.com>
Tue, 22 Mar 2005 20:34:04 +0000 (20:34 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5231 65c4cc65-6c06-0410-ace0-fbb531ad65f3

file.c

diff --git a/file.c b/file.c
index 85e66a7..b2e370c 100755 (executable)
--- 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) {