aboutsummaryrefslogtreecommitdiffstats
path: root/src/witness.c
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 /src/witness.c
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 'src/witness.c')
-rw-r--r--src/witness.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/witness.c b/src/witness.c
index 23753f24..8efff56d 100644
--- a/src/witness.c
+++ b/src/witness.c
@@ -3,12 +3,13 @@
void
witness_init(witness_t *witness, const char *name, witness_rank_t rank,
- witness_comp_t *comp)
+ witness_comp_t *comp, void *opaque)
{
witness->name = name;
witness->rank = rank;
witness->comp = comp;
+ witness->opaque = opaque;
}
#ifdef JEMALLOC_JET