summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBowgo Tsai <bowgotsai@google.com>2020-04-09 14:27:00 +0800
committerBowgo Tsai <bowgotsai@google.com>2020-08-19 14:26:46 +0800
commit12d456421f93a69472df7c0591dbb675cbbd76b3 (patch)
treeeb595bd855fa798b991282ae55ff3c8f93391f1c
parent416b9395fc8df920370420fdc78a79685838cf69 (diff)
Add systrace tag for system property
Introduce a new systrace tag, TRACE_TAG_SYSPROP, for use with system property. Bug: 147275573 Test: build Change-Id: I6f85f3f52f6580bab4ff43fc1dc0e87c689b054e Merged-In: I6f85f3f52f6580bab4ff43fc1dc0e87c689b054e (cherry picked from commit 573fc58bad9b49f1e04d01d9e29e5c4a9c32e023)
-rw-r--r--libcutils/include/cutils/trace.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libcutils/include/cutils/trace.h b/libcutils/include/cutils/trace.h
index c74ee3e9d0..793e2ce8a9 100644
--- a/libcutils/include/cutils/trace.h
+++ b/libcutils/include/cutils/trace.h
@@ -75,7 +75,8 @@ __BEGIN_DECLS
#define ATRACE_TAG_AIDL (1<<24)
#define ATRACE_TAG_NNAPI (1<<25)
#define ATRACE_TAG_RRO (1<<26)
-#define ATRACE_TAG_LAST ATRACE_TAG_RRO
+#define ATRACE_TAG_SYSPROP (1<<27)
+#define ATRACE_TAG_LAST ATRACE_TAG_SYSPROP
// Reserved for initialization.
#define ATRACE_TAG_NOT_READY (1ULL<<63)