Just in case of a race, send the signal on interrupt.

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@253255 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Tilghman Lesher 2010-03-18 15:45:26 +00:00
parent 0c5fb8037c
commit 0c0bf14d99
1 changed files with 3 additions and 0 deletions

View File

@ -261,6 +261,9 @@ static void *inotify_daemon(void *data)
} else if (res < 0) {
if (errno == EINTR || errno == EAGAIN) {
/* If read fails, try again */
AST_LIST_LOCK(&zonelist);
ast_cond_broadcast(&initialization);
AST_LIST_UNLOCK(&zonelist);
continue;
}
/* Sanity check -- this should never happen, either */