diff options
-rw-r--r-- | base/lock.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/base/lock.cc b/base/lock.cc index c2f79c7..dc17c47 100644 --- a/base/lock.cc +++ b/base/lock.cc @@ -43,7 +43,9 @@ void Lock::Acquire() { acquisition_count_++; if (2 == recursion_count_shadow_ && !recursion_used_) { recursion_used_ = true; - DCHECK(false); // Catch accidental redundant lock acquisition. + // TODO(jar): this is causing failures in ThreadTest.Restart and + // ChromeThreadTest.Get on Linux. + // DCHECK(false); // Catch accidental redundant lock acquisition. } #endif // NDEBUG } |