diff options
author | Andy McFadden <fadden@android.com> | 2012-10-29 16:49:44 -0700 |
---|---|---|
committer | Andy McFadden <fadden@android.com> | 2012-11-08 16:40:11 -0800 |
commit | 3fdeb48e3c89be15fe3b539a26ec9a3cf28c898c (patch) | |
tree | 99c42430f3e6afe78df97d6e36f7a5e845e8f98f /include/utils | |
parent | 0b2c9268265e9a165551eaa66cb461d3fab8b564 (diff) | |
download | frameworks_native-3fdeb48e3c89be15fe3b539a26ec9a3cf28c898c.zip frameworks_native-3fdeb48e3c89be15fe3b539a26ec9a3cf28c898c.tar.gz frameworks_native-3fdeb48e3c89be15fe3b539a26ec9a3cf28c898c.tar.bz2 |
Reduce emulator logspam
The emulator doesn't support systrace, but we should point that out
at most once per process.
Bug 7436352
Change-Id: I06b2c1ea0df6c02c11cd2496423c337f8d7c62a1
Diffstat (limited to 'include/utils')
-rw-r--r-- | include/utils/Trace.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/utils/Trace.h b/include/utils/Trace.h index 93e2285..41bce00 100644 --- a/include/utils/Trace.h +++ b/include/utils/Trace.h @@ -54,6 +54,8 @@ #define ATRACE_TAG_CAMERA (1<<10) #define ATRACE_TAG_LAST ATRACE_TAG_CAMERA +#define ATRACE_TAG_NOT_READY (1LL<<63) // Reserved for use during init + #define ATRACE_TAG_VALID_MASK ((ATRACE_TAG_LAST - 1) | ATRACE_TAG_LAST) #ifndef ATRACE_TAG |