1
0
mirror of https://github.com/signalwire/freeswitch.git synced 2025-04-18 01:28:42 +00:00

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

@ -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;
}