git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@12363 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale 2009-03-03 00:21:11 +00:00
parent 8aa9a3b05c
commit 03b8ce67cc
1 changed files with 1 additions and 1 deletions

View File

@ -297,7 +297,7 @@ SWITCH_DECLARE(void) switch_scheduler_task_thread_start(void)
switch_mutex_init(&globals.task_mutex, SWITCH_MUTEX_NESTED, globals.memory_pool);
switch_threadattr_detach_set(thd_attr, 1);
switch_thread_create(task_thread_p, thd_attr, switch_scheduler_task_thread, NULL, globals.memory_pool);
switch_thread_create(&task_thread_p, thd_attr, switch_scheduler_task_thread, NULL, globals.memory_pool);
}
SWITCH_DECLARE(void) switch_scheduler_task_thread_stop(void)