diff options
author | Qi Wang <interwq@gwu.edu> | 2017-05-25 20:33:34 (GMT) |
---|---|---|
committer | Qi Wang <interwq@gmail.com> | 2017-05-25 23:52:10 (GMT) |
commit | 927239b910310f95aebb1f0ffc6fda53f93c8b7e (patch) | |
tree | 6096c6fa981de07b30b56d39bfea3a19a3da53db /src | |
parent | 1df18d7c83bdb1995c088c85818733f164ed0595 (diff) | |
download | jemalloc-927239b910310f95aebb1f0ffc6fda53f93c8b7e.zip jemalloc-927239b910310f95aebb1f0ffc6fda53f93c8b7e.tar.gz jemalloc-927239b910310f95aebb1f0ffc6fda53f93c8b7e.tar.bz2 |
Cleanup smoothstep.sh / .h.
h_step_sum was used to compute moving sum. Not in use anymore.
Diffstat (limited to 'src')
-rw-r--r-- | src/arena.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arena.c b/src/arena.c index fcbd57e..105d60c 100644 --- a/src/arena.c +++ b/src/arena.c @@ -40,7 +40,7 @@ const arena_bin_info_t arena_bin_info[NBINS] = { }; const uint64_t h_steps[SMOOTHSTEP_NSTEPS] = { -#define STEP(step, h, x, y, h_sum) \ +#define STEP(step, h, x, y) \ h, SMOOTHSTEP #undef STEP |