wait for threads to end on shutdown

This commit is contained in:
Anthony Minessale 2012-12-04 16:04:16 -06:00 committed by Ken Rice
parent 4b9be86a8e
commit 1d6b646c54
1 changed files with 6 additions and 0 deletions

View File

@ -1689,6 +1689,12 @@ static void *SWITCH_THREAD_FUNC switch_core_session_thread_pool_manager(switch_t
check_queue(); check_queue();
} }
while(session_manager.running) {
switch_queue_trypush(session_manager.thread_queue, NULL);
switch_yield(20000);
}
return NULL; return NULL;
} }