SVN revision: 50504
This commit is contained in:
Mike Blumenkrantz 2010-07-26 05:47:33 +00:00
parent 97528eaa60
commit 854ccebd14
1 changed files with 7 additions and 7 deletions

View File

@ -374,9 +374,9 @@ _ecore_thread_shutdown(void)
* host CPU can handle. * host CPU can handle.
*/ */
EAPI Ecore_Thread * EAPI Ecore_Thread *
ecore_thread_run(Ecore_Thread_Func_Blocking, ecore_thread_run(Ecore_Thread_Func_Blocking func_blocking,
Ecore_Thread_Func_End, Ecore_Thread_Func_End func_end,
Ecore_Thread_Func_Cancel, Ecore_Thread_Func_Cancel func_cancel,
const void *data) const void *data)
{ {
#ifdef EFL_HAVE_PTHREAD #ifdef EFL_HAVE_PTHREAD
@ -543,10 +543,10 @@ ecore_thread_check(Ecore_Thread *thread)
* the CPU down, so be carefull with that. Of course if it can't start a new thread, it will * the CPU down, so be carefull with that. Of course if it can't start a new thread, it will
* try to use one from the pool. * try to use one from the pool.
*/ */
EAPI Ecore_Thread *ecore_long_run(Ecore_Thread_Func_Heavy, EAPI Ecore_Thread *ecore_long_run(Ecore_Thread_Func_Heavy func_heavy,
Ecore_Thread_Func_Notify, Ecore_Thread_Func_Notify func_notify,
Ecore_Thread_Func_End, Ecore_Thread_Func_End func_end,
Ecore_Thread_Func_Cancel, Ecore_Thread_Func_Cancel func_cancel,
const void *data, const void *data,
Eina_Bool try_no_queue) Eina_Bool try_no_queue)
{ {