diff options
author | Ian Rogers <irogers@google.com> | 2013-08-20 11:06:10 -0700 |
---|---|---|
committer | Ian Rogers <irogers@google.com> | 2013-08-20 11:06:10 -0700 |
commit | 4aa48fccbd3782d78207a79541b61948a066b8fc (patch) | |
tree | 0dd2dfd04c2d29e20fadc8530c08b182012135c0 /runtime/base/mutex.h | |
parent | be7149fc2e7cc607937209f2819e3c1d672e2668 (diff) | |
download | art-4aa48fccbd3782d78207a79541b61948a066b8fc.zip art-4aa48fccbd3782d78207a79541b61948a066b8fc.tar.gz art-4aa48fccbd3782d78207a79541b61948a066b8fc.tar.bz2 |
Enable contention logging by default.
Change-Id: I86314b2dabed81e6fbdeb0ab451ba8176407873e
Diffstat (limited to 'runtime/base/mutex.h')
-rw-r--r-- | runtime/base/mutex.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/base/mutex.h b/runtime/base/mutex.h index 297a63d..cec06cf 100644 --- a/runtime/base/mutex.h +++ b/runtime/base/mutex.h @@ -51,8 +51,8 @@ const bool kDebugLocking = kIsDebugBuild; // Record Log contention information, dumpable via SIGQUIT. #ifdef ART_USE_FUTEXES -// To enable lock contention logging, flip this to true. -const bool kLogLockContentions = false; +// To disable lock contention logging, flip this to false. +const bool kLogLockContentions = true; #else // Keep this false as lock contention logging is supported only with // futex. |