diff options
author | Jason Evans <jasone@canonware.com> | 2016-04-17 19:55:10 (GMT) |
---|---|---|
committer | Jason Evans <jasone@canonware.com> | 2016-06-03 19:27:41 (GMT) |
commit | e75e9be130910a7344f553e5e6c664047a0d0464 (patch) | |
tree | 8528159c3ba8848d9e83ab553f47918f842a5fc5 /src/witness.c | |
parent | 8c9be3e83732883e852d43bca2cf7724c465f93e (diff) | |
download | jemalloc-e75e9be130910a7344f553e5e6c664047a0d0464.zip jemalloc-e75e9be130910a7344f553e5e6c664047a0d0464.tar.gz jemalloc-e75e9be130910a7344f553e5e6c664047a0d0464.tar.bz2 |
Add rtree element witnesses.
Diffstat (limited to 'src/witness.c')
-rw-r--r-- | src/witness.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/witness.c b/src/witness.c index 23753f2..8efff56 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 |