diff options
author | Elliott Hughes <enh@google.com> | 2014-05-28 21:35:57 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2014-05-28 21:35:57 +0000 |
commit | bf082ffb71c40e4670410b246309a182d9dafcf5 (patch) | |
tree | 49a8bcc39396bd60ceec62735c02c7a82eccbaf6 | |
parent | 811f2c0b98d6f8935123221648c96ff975688902 (diff) | |
parent | 8c82b35239fff3b85acc7b2a76fb9488b10fb773 (diff) | |
download | system_core-bf082ffb71c40e4670410b246309a182d9dafcf5.zip system_core-bf082ffb71c40e4670410b246309a182d9dafcf5.tar.gz system_core-bf082ffb71c40e4670410b246309a182d9dafcf5.tar.bz2 |
Merge "Updated trace.h to recognize ATRACE_TAG_BIONIC."
-rw-r--r-- | include/cutils/trace.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/cutils/trace.h b/include/cutils/trace.h index 3f49e8c..fd9bc6a 100644 --- a/include/cutils/trace.h +++ b/include/cutils/trace.h @@ -69,7 +69,8 @@ __BEGIN_DECLS #define ATRACE_TAG_RESOURCES (1<<13) #define ATRACE_TAG_DALVIK (1<<14) #define ATRACE_TAG_RS (1<<15) -#define ATRACE_TAG_LAST ATRACE_TAG_RS +#define ATRACE_TAG_BIONIC (1<<16) +#define ATRACE_TAG_LAST ATRACE_TAG_BIONIC // Reserved for initialization. #define ATRACE_TAG_NOT_READY (1LL<<63) |