aboutsummaryrefslogtreecommitdiffstats
path: root/include/jemalloc/internal/tsd.h
diff options
context:
space:
mode:
authorJason Evans <jasone@canonware.com>2016-04-17 12:55:10 -0700
committerJason Evans <jasone@canonware.com>2016-06-03 12:27:41 -0700
commite75e9be130910a7344f553e5e6c664047a0d0464 (patch)
tree8528159c3ba8848d9e83ab553f47918f842a5fc5 /include/jemalloc/internal/tsd.h
parent8c9be3e83732883e852d43bca2cf7724c465f93e (diff)
downloadplatform_external_jemalloc_new-e75e9be130910a7344f553e5e6c664047a0d0464.tar.gz
platform_external_jemalloc_new-e75e9be130910a7344f553e5e6c664047a0d0464.tar.bz2
platform_external_jemalloc_new-e75e9be130910a7344f553e5e6c664047a0d0464.zip
Add rtree element witnesses.
Diffstat (limited to 'include/jemalloc/internal/tsd.h')
-rw-r--r--include/jemalloc/internal/tsd.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/jemalloc/internal/tsd.h b/include/jemalloc/internal/tsd.h
index f4ff8d76..ca8915ea 100644
--- a/include/jemalloc/internal/tsd.h
+++ b/include/jemalloc/internal/tsd.h
@@ -573,6 +573,7 @@ struct tsd_init_head_s {
O(arenas_tdata_bypass, bool) \
O(tcache_enabled, tcache_enabled_t) \
O(witnesses, witness_list_t) \
+ O(rtree_elm_witnesses, rtree_elm_witness_tsd_t) \
O(witness_fork, bool) \
#define TSD_INITIALIZER { \
@@ -588,6 +589,7 @@ struct tsd_init_head_s {
false, \
tcache_enabled_default, \
ql_head_initializer(witnesses), \
+ RTREE_ELM_WITNESS_TSD_INITIALIZER, \
false \
}