am 41f7736a: am 434e21bf: am 3fdeb48e: Reduce emulator logspam

* commit '41f7736ad1e72df8796416a82ce3cede6193d1eb':
  Reduce emulator logspam
This commit is contained in:
Andy McFadden 2012-11-09 22:49:18 -08:00 committed by Android Git Automerger
commit 2bdd8fd65a
2 changed files with 4 additions and 2 deletions

View File

@ -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

View File

@ -25,7 +25,7 @@ namespace android {
volatile int32_t Tracer::sIsReady = 0;
int Tracer::sTraceFD = -1;
uint64_t Tracer::sEnabledTags = 0;
uint64_t Tracer::sEnabledTags = ATRACE_TAG_NOT_READY;
Mutex Tracer::sMutex;
void Tracer::changeCallback() {
@ -46,7 +46,7 @@ void Tracer::init() {
sTraceFD = open(traceFileName, O_WRONLY);
if (sTraceFD == -1) {
ALOGE("error opening trace file: %s (%d)", strerror(errno), errno);
// sEnabledTags remains zero indicating that no tracing can occur
sEnabledTags = 0; // no tracing can occur
} else {
loadSystemProperty();
}