mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 20:20:07 +00:00
Don't retry lock if there is no channel
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1167 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -438,10 +438,12 @@ static struct ast_channel *agent_new(struct agent_pvt *p, int state)
|
||||
p->app_sleep_cond = 0;
|
||||
if( pthread_mutex_trylock(&p->app_lock) )
|
||||
{
|
||||
ast_queue_frame(p->chan, &null_frame, 1);
|
||||
ast_pthread_mutex_unlock(&p->lock); /* For other thread to read the condition. */
|
||||
ast_pthread_mutex_lock(&p->app_lock);
|
||||
ast_pthread_mutex_lock(&p->lock);
|
||||
if (p->chan) {
|
||||
ast_queue_frame(p->chan, &null_frame, 1);
|
||||
ast_pthread_mutex_unlock(&p->lock); /* For other thread to read the condition. */
|
||||
ast_pthread_mutex_lock(&p->app_lock);
|
||||
ast_pthread_mutex_lock(&p->lock);
|
||||
}
|
||||
if( !p->chan )
|
||||
{
|
||||
ast_log(LOG_WARNING, "Agent disconnected while we were connecting the call\n");
|
||||
|
Reference in New Issue
Block a user