mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-18 18:58:22 +00:00
Properly handle an ETIMEDOUT result from pthread_cond_timedwait (issue #7318 reported by arkadia)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@41390 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -485,7 +485,7 @@ static inline int __ast_cond_timedwait(const char *filename, int lineno, const c
|
||||
t->thread[t->reentrancy] = 0;
|
||||
}
|
||||
|
||||
if ((res = pthread_cond_timedwait(cond, &t->mutex, abstime))) {
|
||||
if ((res = pthread_cond_timedwait(cond, &t->mutex, abstime)) && (res != ETIMEDOUT)) {
|
||||
__ast_mutex_logger("%s line %d (%s): Error waiting on condition mutex '%s'\n",
|
||||
filename, lineno, func, strerror(res));
|
||||
#ifdef THREAD_CRASH
|
||||
|
Reference in New Issue
Block a user