diff options
-rwxr-xr-x | src/atrace/atrace.cpp | 1 | ||||
-rwxr-xr-x | ttrace.h.in | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/atrace/atrace.cpp b/src/atrace/atrace.cpp index dad1fa6..7142eea 100755 --- a/src/atrace/atrace.cpp +++ b/src/atrace/atrace.cpp @@ -199,6 +199,7 @@ static const TracingCategory k_categories[] = { #ifdef TTRACE_PROFILE_MOBILE #elif defined TTRACE_PROFILE_TV { "system", "System", TTRACE_TAG_SYSTEM, { } }, + { "debug", "For extra debugging purpose", TTRACE_TAG_DEBUG, { } }, #elif defined TTRACE_PROFILE_WEARABLE #endif }; diff --git a/ttrace.h.in b/ttrace.h.in index 057a2df..7941c27 100755 --- a/ttrace.h.in +++ b/ttrace.h.in @@ -56,6 +56,7 @@ extern "C" { #elif defined TTRACE_PROFILE_TV //define TAGs belonging to tv profile only #define TTRACE_TAG_SYSTEM (1<<21) +#define TTRACE_TAG_DEBUG (1<<22) #elif defined TTRACE_PROFILE_WEARABLE //define TAGs belonging to wearable profile only #endif |