diff options
| author | 2014-05-23 18:51:20 +0000 | |
|---|---|---|
| committer | 2014-05-23 18:51:20 +0000 | |
| commit | cda4e2e6f4645a499a6b391053fdf4c85a1d3a16 (patch) | |
| tree | 522a967761a9c37cce23a6d0e53eef6f54283f9e | |
| parent | 82f3c1b76a19f196a482cad9d5c1aac769d5a397 (diff) | |
| parent | 06abcdfa518d1fe3cf87416f5bca6af1d0e2d569 (diff) | |
Merge "Extra debug output for a failing lock check."
| -rw-r--r-- | runtime/base/mutex-inl.h | 2 |
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; } } |