remvoe unused func too
authorraster <raster@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Thu, 29 Mar 2012 09:25:48 +0000 (09:25 +0000)
committerraster <raster@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Thu, 29 Mar 2012 09:25:48 +0000 (09:25 +0000)
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/ecore@69733 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/lib/ecore/ecore_thread.c

index 29d92a4..5c149d6 100644 (file)
@@ -735,22 +735,6 @@ _ecore_thread_shutdown(void)
 #endif
 }
 
-void
-_ecore_thread_assert_main_loop_thread(const char *function)
-{
-   Eina_Bool good;
-#ifdef EFL_HAVE_THREADS
-   good = PHE(get_main_loop_thread(), PHS());
-#else
-   good = EINA_TRUE;
-#endif
-   if (!good)
-     {
-        EINA_LOG_CRIT("Call to %s from wrong thread!", function);
-        abort();
-     }
-}
-
 EAPI Ecore_Thread *
 ecore_thread_run(Ecore_Thread_Cb func_blocking,
                  Ecore_Thread_Cb func_end,