summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorQi Wang <interwq@gwu.edu>2017-05-25 20:33:34 (GMT)
committerQi Wang <interwq@gmail.com>2017-05-25 23:52:10 (GMT)
commit927239b910310f95aebb1f0ffc6fda53f93c8b7e (patch)
tree6096c6fa981de07b30b56d39bfea3a19a3da53db /src
parent1df18d7c83bdb1995c088c85818733f164ed0595 (diff)
downloadjemalloc-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.c2
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