aboutsummaryrefslogtreecommitdiff
path: root/src/allocators/tcmallocs.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/allocators/tcmallocs.py')
-rw-r--r--src/allocators/tcmallocs.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/allocators/tcmallocs.py b/src/allocators/tcmallocs.py
index fe8121f..46eccda 100644
--- a/src/allocators/tcmallocs.py
+++ b/src/allocators/tcmallocs.py
@@ -17,7 +17,10 @@
"""Collection containing all glibc variants"""
-from src.allocators.tcmalloc import tcmalloc, tcmalloc_nofs, tcmalloc_align
+import src.allocators.tcmalloc as tcm
-allocators = [tcmalloc, tcmalloc_nofs, tcmalloc_align]
+allocators = [tcm.tcmalloc,
+ tcm.tcmalloc_gperftools_nofs,
+ tcm.tcmalloc_gperftools_align,
+ tcm.tcmalloc_gperftools_cacheline_exclusive]