aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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
]