forked from OSchip/llvm-project
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:
parent
61bf8cb9af
commit
f9d9db4975
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue