add TTRACE_TAG_EFL 51/60251/1 accepted/tizen/ivi/20160225.081753 accepted/tizen/mobile/20160225.081705 accepted/tizen/tv/20160225.081718 accepted/tizen/wearable/20160225.081740 submit/tizen/20160224.104940
authorEunji, Lee <eunjieji.lee@samsung.com>
Wed, 24 Feb 2016 10:38:50 +0000 (19:38 +0900)
committerEunji, Lee <eunjieji.lee@samsung.com>
Wed, 24 Feb 2016 10:38:50 +0000 (19:38 +0900)
Change-Id: Idf74de606ca6a1d7977512d631ae4eeda1f9c73c
Signed-off-by: Eunji, Lee <eunjieji.lee@samsung.com>
src/atrace/atrace.cpp
src/ttrace.c
ttrace.h.in

index 146e99b..2ac43cf 100755 (executable)
@@ -144,6 +144,7 @@ static const TracingCategory k_categories[] = {
     { "mc",          "Multimedia content",  TTRACE_TAG_MEDIA_CONTENT, { } },
     { "mdb",         "Multimedia database", TTRACE_TAG_MEDIA_DB, { } },
     { "scmirroring", "Screen mirroring",    TTRACE_TAG_SCREEN_MIRRORING, { } },
+    { "efl",         "EFL",                 TTRACE_TAG_EFL, { } },
     { "app",         "Application",         TTRACE_TAG_APP, { } },
 #else          // Android tags
     { "gfx",        "Graphics",         ATRACE_TAG_GRAPHICS, { } },
index 12c953d..7b62bb7 100755 (executable)
@@ -40,6 +40,7 @@
 #endif
 
 #include <errno.h>
+#include <stdio.h>
 #include <fcntl.h>
 #include <unistd.h>
 #include <sys/types.h>
index cfd6890..8cf061b 100755 (executable)
@@ -22,7 +22,7 @@
 #cmakedefine TTRACE_PROFILE_TV
 #cmakedefine TTRACE_PROFILE_WEARABLE
 
-#include <stdio.h>
+
 #include "stdint.h"
 
 #ifdef __cplusplus
@@ -46,13 +46,14 @@ extern "C" {
 #define TTRACE_TAG_MEDIA_CONTENT       (1<<12)
 #define TTRACE_TAG_MEDIA_DB            (1<<13)
 #define TTRACE_TAG_SCREEN_MIRRORING    (1<<14)
-#define TTRACE_TAG_APP                 (1<<15)
+#define TTRACE_TAG_EFL                 (1<<15)
+#define TTRACE_TAG_APP                 (1<<20)
 
 #ifdef TTRACE_PROFILE_MOBILE
 //define TAGs belonging to mobile profile only
 #elif defined TTRACE_PROFILE_TV
 //define TAGs belonging to tv profile only
-#define TTRACE_TAG_SYSTEM              (1<<16)
+#define TTRACE_TAG_SYSTEM              (1<<21)
 #elif defined TTRACE_PROFILE_WEARABLE
 //define TAGs belonging to wearable profile only
 #endif