bu5hm4n pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=e1738c4f1eec731715cb60906ee6caa443f9165f
commit e1738c4f1eec731715cb60906ee6caa443f9165f Author: Marcel Hollerbach <[email protected]> Date: Tue Sep 5 14:36:17 2017 +0200 Revert "evas_thread: only join the thread if the thread is still alive" This reverts commit e41d46c635bdf769d4b93da609883347168c719a. This seems to be wrong --- src/lib/evas/common/evas_thread_render.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/evas/common/evas_thread_render.c b/src/lib/evas/common/evas_thread_render.c index 62f0ba1577..bbde81a657 100644 --- a/src/lib/evas/common/evas_thread_render.c +++ b/src/lib/evas/common/evas_thread_render.c @@ -260,8 +260,8 @@ evas_thread_shutdown(void) goto timeout_shutdown; } } - if (!evas_thread_exited) - eina_thread_join(evas_thread_worker); + + eina_thread_join(evas_thread_worker); timeout_shutdown: eina_lock_free(&evas_thread_queue_lock); eina_condition_free(&evas_thread_queue_condition); --
