diff options
author | Yinan Zhang <zyn8950@gmail.com> | 2019-06-05 22:26:08 (GMT) |
---|---|---|
committer | Qi Wang <interwq@gmail.com> | 2019-07-16 22:18:52 (GMT) |
commit | a2a693e722d3ec0f0fb7dfcac54e775b1837efda (patch) | |
tree | 7cae18ee587a659dc7a6f3c595693b91e84ee923 | |
parent | e0a0c8d4bf512283e8c85fb4a51761fce5e0c08f (diff) | |
download | jemalloc-a2a693e722d3ec0f0fb7dfcac54e775b1837efda.zip jemalloc-a2a693e722d3ec0f0fb7dfcac54e775b1837efda.tar.gz jemalloc-a2a693e722d3ec0f0fb7dfcac54e775b1837efda.tar.bz2 |
Remove prof_accumbytes in arena
`prof_accumbytes` was supposed to be replaced by `prof_accum` in
https://github.com/jemalloc/jemalloc/pull/623.
-rw-r--r-- | include/jemalloc/internal/arena_structs_b.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/jemalloc/internal/arena_structs_b.h b/include/jemalloc/internal/arena_structs_b.h index 950bd13..eeab57f 100644 --- a/include/jemalloc/internal/arena_structs_b.h +++ b/include/jemalloc/internal/arena_structs_b.h @@ -116,7 +116,6 @@ struct arena_s { /* Synchronization: internal. */ prof_accum_t prof_accum; - uint64_t prof_accumbytes; /* * PRNG state for cache index randomization of large allocation base |