No need to do this in here any longer since the linkedlists macro is fixed

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@19305 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Joshua Colp
2006-04-11 20:51:45 +00:00
parent 2f854fabc6
commit d7f01e051b

View File

@@ -847,7 +847,6 @@ static struct iax2_thread *find_idle_thread(void)
thread = AST_LIST_FIRST(&idle_list);
if (thread != NULL) {
AST_LIST_REMOVE(&idle_list, thread, list);
thread->list.next = NULL;
}
AST_LIST_UNLOCK(&idle_list);
@@ -857,7 +856,6 @@ static struct iax2_thread *find_idle_thread(void)
thread = AST_LIST_FIRST(&dynamic_list);
if (thread != NULL) {
AST_LIST_REMOVE(&dynamic_list, thread, list);
thread->list.next = NULL;
}
/* Make sure we absolutely have a thread... if not, try to make one if allowed */
if (thread == NULL && iaxmaxthreadcount > iaxdynamicthreadcount) {
@@ -8024,7 +8022,6 @@ static void *iax2_process_thread(void *data)
/* Now... remove ourselves from the active list, and return to the idle list */
AST_LIST_LOCK(&active_list);
AST_LIST_REMOVE(&active_list, thread, list);
thread->list.next = NULL;
AST_LIST_UNLOCK(&active_list);
/* Go back into our respective list */