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
This commit is contained in:
Greg Clayton 2015-07-23 23:32:08 +00:00
parent 61bf8cb9af
commit f9d9db4975
1 changed files with 1 additions and 1 deletions

View File

@ -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