aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJason Evans <jasone@canonware.com>2016-05-12 21:07:08 -0700
committerJason Evans <jasone@canonware.com>2016-10-04 15:56:56 -0700
commitbcd5424b1c5361534b3c535326d0b87f223a42e1 (patch)
tree50c980ef33dbe41bde11c42d88e1a1e2fd0a51e7 /include
parentc19b48fe73b18eb39182e15cb31f4695a7e10b7f (diff)
downloadjemalloc-bcd5424b1c5361534b3c535326d0b87f223a42e1.tar.gz
Use TSDN_NULL rather than NULL as appropriate.
Diffstat (limited to 'include')
-rw-r--r--include/jemalloc/internal/mb.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/jemalloc/internal/mb.h b/include/jemalloc/internal/mb.h
index 437c86f..5384728 100644
--- a/include/jemalloc/internal/mb.h
+++ b/include/jemalloc/internal/mb.h
@@ -105,8 +105,8 @@ mb_write(void)
malloc_mutex_t mtx;
malloc_mutex_init(&mtx, "mb", WITNESS_RANK_OMIT);
- malloc_mutex_lock(NULL, &mtx);
- malloc_mutex_unlock(NULL, &mtx);
+ malloc_mutex_lock(TSDN_NULL, &mtx);
+ malloc_mutex_unlock(TSDN_NULL, &mtx);
}
#endif
#endif