raster pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=0bca7af2e8b0022dbd9de632888990be1b21ea69

commit 0bca7af2e8b0022dbd9de632888990be1b21ea69
Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com>
Date:   Thu Oct 15 17:58:17 2015 +0900

    evas - was missing evlogs for the threaded rendering handling - fix
---
 src/lib/evas/common/evas_thread_render.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/lib/evas/common/evas_thread_render.c 
b/src/lib/evas/common/evas_thread_render.c
index 420423a..21214ac 100644
--- a/src/lib/evas/common/evas_thread_render.c
+++ b/src/lib/evas/common/evas_thread_render.c
@@ -101,15 +101,19 @@ evas_thread_worker_func(void *data EINA_UNUSED, 
Eina_Thread thread EINA_UNUSED)
 
          DBG("Evas render thread command queue length: %u", len);
 
+         eina_evlog("+thread", NULL, 0.0, NULL);
          while (len)
            {
               assert(cmd->cb);
 
+              eina_evlog("+thread_do", cmd->data, 0.0, NULL);
               cmd->cb(cmd->data);
+              eina_evlog("-thread_do", cmd->data, 0.0, NULL);
 
               cmd++;
               len--;
            }
+         eina_evlog("-thread", NULL, 0.0, NULL);
       }
 
 out:

-- 


Reply via email to