From 4aa48fccbd3782d78207a79541b61948a066b8fc Mon Sep 17 00:00:00 2001 From: Ian Rogers Date: Tue, 20 Aug 2013 11:06:10 -0700 Subject: Enable contention logging by default. Change-Id: I86314b2dabed81e6fbdeb0ab451ba8176407873e --- runtime/base/mutex.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'runtime/base') 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. -- cgit v1.1