am cb6daaaf: am 9d379a1e: am dfdbb64f: Merge "Fix stack trace logging in RefBase."

* commit 'cb6daaafa45c81c3c304eac947d2e2fca15f3171':
  Fix stack trace logging in RefBase.
This commit is contained in:
Igor Murashkin 2014-04-02 00:03:31 +00:00 committed by Android Git Automerger
commit f15b45a7db

View file

@ -109,7 +109,7 @@ public:
char inc = refs->ref >= 0 ? '+' : '-';
ALOGD("\t%c ID %p (ref %d):", inc, refs->id, refs->ref);
#if DEBUG_REFS_CALLSTACK_ENABLED
refs->stack.dump(LOG_TAG);
refs->stack.log(LOG_TAG);
#endif
refs = refs->next;
}
@ -123,7 +123,7 @@ public:
char inc = refs->ref >= 0 ? '+' : '-';
ALOGD("\t%c ID %p (ref %d):", inc, refs->id, refs->ref);
#if DEBUG_REFS_CALLSTACK_ENABLED
refs->stack.dump(LOG_TAG);
refs->stack.log(LOG_TAG);
#endif
refs = refs->next;
}