aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2020-03-10 14:22:13 +0100
committerFlorian Fischer <florian.fl.fischer@fau.de>2020-03-10 14:22:13 +0100
commit5a2edc5ffa86b3cadd5194935889cefed349b41f (patch)
tree28750f160d05d758bf38fa53e3d9ddc0aa2b0666
parent05c4ff22bcf3f5944793d7a5e89e7237d2bf02c2 (diff)
downloadallocbench-5a2edc5ffa86b3cadd5194935889cefed349b41f.tar.gz
allocbench-5a2edc5ffa86b3cadd5194935889cefed349b41f.zip
add tcmalloc_gperftools to tcmallocs
-rw-r--r--src/allocators/tcmallocs.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/allocators/tcmallocs.py b/src/allocators/tcmallocs.py
index 980c566..0fe5d5b 100644
--- a/src/allocators/tcmallocs.py
+++ b/src/allocators/tcmallocs.py
@@ -19,6 +19,7 @@
import src.allocators.tcmalloc as tcm
allocators = [
- tcm.tcmalloc, tcm.tcmalloc_align, tcm.tcmalloc_gperftools_nofs,
- tcm.tcmalloc_gperftools_align, tcm.tcmalloc_gperftools_cacheline_exclusive
+ tcm.tcmalloc, tcm.tcmalloc_align, tcm.tcmalloc_gperftools,
+ tcm.tcmalloc_gperftools_nofs, tcm.tcmalloc_gperftools_align,
+ tcm.tcmalloc_gperftools_cacheline_exclusive
]