Don't abort on wrong thread
authorMike McCormack <mj.mccormack@samsung.com>
Mon, 11 Jul 2011 00:53:08 +0000 (09:53 +0900)
committerMike McCormack <mj.mccormack@samsung.com>
Mon, 11 Jul 2011 00:53:08 +0000 (09:53 +0900)
src/lib/ecore/ecore_thread.c

index ae339ce..ffa518f 100644 (file)
@@ -867,7 +867,9 @@ _ecore_thread_assert_main_loop_thread(const char *function)
    if (!good)
      {
         EINA_LOG_CRIT("Call to %s from wrong thread!", function);
+#if 0
         abort();
+#endif
      }
 }