aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJason Evans <jasone@canonware.com>2016-04-17 12:53:48 -0700
committerJason Evans <jasone@canonware.com>2016-04-17 13:44:59 -0700
commit1b5830178fe73d4018233fea6858fff87d2b19df (patch)
tree13e45bc39e705eada2032baa928d3167894f014a /src
parentd9394d0ca870fc20b48ee7c57c69d48effe51041 (diff)
downloadjemalloc-1b5830178fe73d4018233fea6858fff87d2b19df.tar.gz
Fix malloc_mutex_[un]lock() to conditionally check witness.
Also remove tautological cassert(config_debug) calls.
Diffstat (limited to 'src')
-rw-r--r--src/witness.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/witness.c b/src/witness.c
index b7b91ac..444d200 100644
--- a/src/witness.c
+++ b/src/witness.c
@@ -39,8 +39,6 @@ witness_lock(tsd_t *tsd, witness_t *witness)
witness_list_t *witnesses;
witness_t *w;
- cassert(config_debug);
-
if (tsd == NULL)
return;
if (witness->rank == WITNESS_RANK_OMIT)
@@ -63,8 +61,6 @@ witness_unlock(tsd_t *tsd, witness_t *witness)
{
witness_list_t *witnesses;
- cassert(config_debug);
-
if (tsd == NULL)
return;
if (witness->rank == WITNESS_RANK_OMIT)
@@ -101,8 +97,6 @@ witness_assert_owner(tsd_t *tsd, const witness_t *witness)
witness_list_t *witnesses;
witness_t *w;
- cassert(config_debug);
-
if (tsd == NULL)
return;
if (witness->rank == WITNESS_RANK_OMIT)
@@ -141,8 +135,6 @@ witness_assert_not_owner(tsd_t *tsd, const witness_t *witness)
witness_list_t *witnesses;
witness_t *w;
- cassert(config_debug);
-
if (tsd == NULL)
return;
if (witness->rank == WITNESS_RANK_OMIT)
@@ -184,8 +176,6 @@ witness_assert_lockless(tsd_t *tsd)
witness_list_t *witnesses;
witness_t *w;
- cassert(config_debug);
-
if (tsd == NULL)
return;