wait for threads to end on shutdown

This commit is contained in:
Anthony Minessale 2012-12-04 16:04:16 -06:00
parent 085a0fa9e6
commit 02a1aa4bc4
1 changed files with 6 additions and 0 deletions

View File

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