summaryrefslogtreecommitdiffstats
path: root/lldb/source
diff options
context:
space:
mode:
authorGreg Clayton <gclayton@apple.com>2015-07-23 23:32:08 +0000
committerGreg Clayton <gclayton@apple.com>2015-07-23 23:32:08 +0000
commitf9d9db4975a0e599136a6609bf606f4212edf2cc (patch)
treeba2a04a1989f1de159b078c3de251cccec039ceb /lldb/source
parent61bf8cb9af472e3c2a7726990c1d8aa764f1a0dd (diff)
downloadbcm5719-llvm-f9d9db4975a0e599136a6609bf606f4212edf2cc.tar.gz
bcm5719-llvm-f9d9db4975a0e599136a6609bf606f4212edf2cc.zip
Disable mutex error checking so it doesn't create problems with the multi-threaded test case. The error would cause an assertion that could cause lldb to crash when unlocking a mutex returned an error because it was in use.
llvm-svn: 243067
Diffstat (limited to 'lldb/source')
-rw-r--r--lldb/source/Host/common/Mutex.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Host/common/Mutex.cpp b/lldb/source/Host/common/Mutex.cpp
index c26467fa0d7..98f5321ad67 100644
--- a/lldb/source/Host/common/Mutex.cpp
+++ b/lldb/source/Host/common/Mutex.cpp
@@ -27,7 +27,7 @@
#endif
// Enable extra mutex error checking
-#ifdef LLDB_CONFIGURATION_DEBUG
+#if 0 // LLDB_CONFIGURATION_DEBUG
#define ENABLE_MUTEX_ERROR_CHECKING 1
#include <inttypes.h>
#endif
OpenPOWER on IntegriCloud