Skip to content
Snippets Groups Projects
Commit 1d08a35f authored by Mark Spencer's avatar Mark Spencer
Browse files

Unlock while processing schedule queue

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1779 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 967871d4
No related branches found
No related tags found
No related merge requests found
...@@ -342,6 +342,7 @@ int ast_sched_runq(struct sched_context *con) ...@@ -342,6 +342,7 @@ int ast_sched_runq(struct sched_context *con)
struct sched *current; struct sched *current;
struct timeval tv; struct timeval tv;
int x=0; int x=0;
int res;
DEBUG(ast_log(LOG_DEBUG, "ast_sched_runq()\n")); DEBUG(ast_log(LOG_DEBUG, "ast_sched_runq()\n"));
ast_mutex_lock(&con->lock); ast_mutex_lock(&con->lock);
...@@ -370,7 +371,12 @@ int ast_sched_runq(struct sched_context *con) ...@@ -370,7 +371,12 @@ int ast_sched_runq(struct sched_context *con)
* the schedule queue. If that's what it wants to do, it * the schedule queue. If that's what it wants to do, it
* should return 0. * should return 0.
*/ */
if (current->callback(current->data)) {
ast_mutex_unlock(&con->lock);
res = current->callback(current->data);
ast_mutex_lock(&con->lock);
if (res) {
/* /*
* If they return non-zero, we should schedule them to be * If they return non-zero, we should schedule them to be
* run again. * run again.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment