diff options
author | Jonghwa Lee <jonghwa3.lee@samsung.com> | 2016-08-29 01:20:03 -0700 |
---|---|---|
committer | Gerrit Code Review <gerrit@review.vlan103.tizen.org> | 2016-08-29 01:20:03 -0700 |
commit | a014316aafd606238ee618cb41231886b24b1c23 (patch) | |
tree | 89e0fc5743612832658d8e49ef188d7a60b14302 | |
parent | 57ce770a65037dda09c38e1a059d54eb879becb0 (diff) | |
parent | ddb296ba86031c4c59ad4bf46337d703ccf2cff5 (diff) | |
download | ttrace-a014316aafd606238ee618cb41231886b24b1c23.tar.gz ttrace-a014316aafd606238ee618cb41231886b24b1c23.tar.bz2 ttrace-a014316aafd606238ee618cb41231886b24b1c23.zip |
Merge "Rename 'TTRACE_TAG_DEBUG' to 'TTRACE_TAG_PERFTEST'" into tizensubmit/tizen/20160831.011831
-rwxr-xr-x | src/atrace/atrace.cpp | 2 | ||||
-rwxr-xr-x | ttrace.h.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/atrace/atrace.cpp b/src/atrace/atrace.cpp index fb2aca9..80bb747 100755 --- a/src/atrace/atrace.cpp +++ b/src/atrace/atrace.cpp @@ -199,7 +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, { } }, + { "perftest", "For Performance test", TTRACE_TAG_PERFTEST, { } }, #elif defined TTRACE_PROFILE_WEARABLE #endif }; diff --git a/ttrace.h.in b/ttrace.h.in index 7941c27..e1887f9 100755 --- a/ttrace.h.in +++ b/ttrace.h.in @@ -56,7 +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) +#define TTRACE_TAG_PERFTEST (1<<22) #elif defined TTRACE_PROFILE_WEARABLE //define TAGs belonging to wearable profile only #endif |