From 715f463428688650bbee3402e73ed1110ed24893 Mon Sep 17 00:00:00 2001 From: Yasuhiro Matsuda Date: Wed, 1 Jul 2015 01:54:49 +0900 Subject: [PATCH] Add a tag for tracing system server. This change is needed for https://android-review.googlesource.com/#/c/157562/ BUG: 21739901 Change-Id: Ia6b9414de82c210f3d7a275d21b8cd00bd19dcdf --- include/cutils/trace.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/cutils/trace.h b/include/cutils/trace.h index 6d9b3bc90..27296f370 100644 --- a/include/cutils/trace.h +++ b/include/cutils/trace.h @@ -68,7 +68,8 @@ __BEGIN_DECLS #define ATRACE_TAG_BIONIC (1<<16) #define ATRACE_TAG_POWER (1<<17) #define ATRACE_TAG_PACKAGE_MANAGER (1<<18) -#define ATRACE_TAG_LAST ATRACE_TAG_PACKAGE_MANAGER +#define ATRACE_TAG_SYSTEM_SERVER (1<<19) +#define ATRACE_TAG_LAST ATRACE_TAG_SYSTEM_SERVER // Reserved for initialization. #define ATRACE_TAG_NOT_READY (1LL<<63)