Ecore: _ecore_thread_handler must not be defined if threads aren't supported

SVN revision: 63251
This commit is contained in:
Youness Alaoui 2011-09-07 06:58:10 +00:00
parent 523ba39cb5
commit b2392e422c
1 changed files with 4 additions and 2 deletions

View File

@ -361,12 +361,15 @@ struct _Ecore_Pthread_Data
};
#endif
static void _ecore_thread_handler(void *data __UNUSED__, void *buffer, unsigned int nbyte);
static int _ecore_thread_count_max = 0;
static int ECORE_THREAD_PIPE_DEL = 0;
static Eina_Array *_ecore_thread_pipe = NULL;
#ifdef EFL_HAVE_THREADS
static void _ecore_thread_handler(void *data __UNUSED__, void *buffer, unsigned int nbyte);
static Ecore_Pipe*
_ecore_thread_pipe_get(void)
{
@ -376,7 +379,6 @@ _ecore_thread_pipe_get(void)
return ecore_pipe_add(_ecore_thread_handler, NULL);
}
#ifdef EFL_HAVE_THREADS
static int _ecore_thread_count = 0;
static Ecore_Event_Handler *del_handler = NULL;