Fix malloc_mutex_assert_[not_]owner() for --enable-lazy-lock case.

This commit is contained in:
Jason Evans 2016-04-18 15:42:09 -07:00
parent ab0cfe01fa
commit b6e07d2389

View File

@ -124,7 +124,7 @@ JEMALLOC_INLINE void
malloc_mutex_assert_owner(tsd_t *tsd, malloc_mutex_t *mutex)
{
if (config_debug)
if (isthreaded && config_debug)
witness_assert_owner(tsd, &mutex->witness);
}
@ -132,7 +132,7 @@ JEMALLOC_INLINE void
malloc_mutex_assert_not_owner(tsd_t *tsd, malloc_mutex_t *mutex)
{
if (config_debug)
if (isthreaded && config_debug)
witness_assert_not_owner(tsd, &mutex->witness);
}
#endif