Make Eina amalgamation build again

The eina_thread_init and eina_thread_shutdown functions
  have to return Eina_Bool to match other init/shutdown
  functions in Eina.  The fact that this didn't break the
  normal build is interesting...



SVN revision: 78258
This commit is contained in:
Nicholas Hughart 2012-10-19 15:57:55 +00:00
parent 54ed751b9d
commit f4066b0ed6
1 changed files with 4 additions and 2 deletions

View File

@ -300,12 +300,14 @@ eina_thread_join(Eina_Thread t)
return PHJ(t);
}
void
Eina_Bool
eina_thread_init(void)
{
return EINA_TRUE;
}
void
Eina_Bool
eina_thread_shutdown(void)
{
return EINA_TRUE;
}