summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorIan Rogers <irogers@google.com>2013-06-10 23:19:30 -0700
committerIan Rogers <irogers@google.com>2013-06-10 23:19:30 -0700
commitccf124800fe025be3ca05c28a60514909ca66a11 (patch)
tree40e29f7c4036ec5d70fabef4a5fd28eeaa390fe9 /src
parentd752f996d1789dfbd724ae3f55009273f5411d1c (diff)
downloadart-ccf124800fe025be3ca05c28a60514909ca66a11.zip
art-ccf124800fe025be3ca05c28a60514909ca66a11.tar.gz
art-ccf124800fe025be3ca05c28a60514909ca66a11.tar.bz2
Always enable lock level checks.
Gathering data for Bug: 9285048. Change-Id: I2569f2fcc428df4ee43695bb9144c05f204a3070
Diffstat (limited to 'src')
-rw-r--r--src/base/mutex.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/base/mutex.h b/src/base/mutex.h
index a3efd5c..d6ae3dc 100644
--- a/src/base/mutex.h
+++ b/src/base/mutex.h
@@ -53,7 +53,7 @@ namespace art {
class ScopedContentionRecorder;
class Thread;
-const bool kDebugLocking = kIsDebugBuild;
+const bool kDebugLocking = true || kIsDebugBuild;
// Base class for all Mutex implementations
class BaseMutex {