summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Ian Rogers <irogers@google.com> 2014-05-23 18:51:20 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2014-05-23 18:51:20 +0000
commitcda4e2e6f4645a499a6b391053fdf4c85a1d3a16 (patch)
tree522a967761a9c37cce23a6d0e53eef6f54283f9e
parent82f3c1b76a19f196a482cad9d5c1aac769d5a397 (diff)
parent06abcdfa518d1fe3cf87416f5bca6af1d0e2d569 (diff)
Merge "Extra debug output for a failing lock check."
-rw-r--r--runtime/base/mutex-inl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/base/mutex-inl.h b/runtime/base/mutex-inl.h
index 6c415e77e3..a9472f7504 100644
--- a/runtime/base/mutex-inl.h
+++ b/runtime/base/mutex-inl.h
@@ -146,7 +146,7 @@ static inline void CheckUnattachedThread(LockLevel level) NO_THREAD_SAFETY_ANALY
// Ignore logging which may or may not have set up thread data structures.
level == kLoggingLock ||
// Avoid recursive death.
- level == kAbortLock);
+ level == kAbortLock) << level;
}
}