diff options
author | Yinan Zhang <zyn8950@gmail.com> | 2019-06-05 15:26:08 -0700 |
---|---|---|
committer | Qi Wang <interwq@gmail.com> | 2019-07-16 15:18:52 -0700 |
commit | a2a693e722d3ec0f0fb7dfcac54e775b1837efda (patch) | |
tree | 7cae18ee587a659dc7a6f3c595693b91e84ee923 /include | |
parent | e0a0c8d4bf512283e8c85fb4a51761fce5e0c08f (diff) |
Remove prof_accumbytes in arena
`prof_accumbytes` was supposed to be replaced by `prof_accum` in
https://github.com/jemalloc/jemalloc/pull/623.
Diffstat (limited to 'include')
-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 950bd13c..eeab57fd 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 |