aboutsummaryrefslogtreecommitdiff
path: root/src/allocators/all.py
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2019-06-24 17:21:09 +0200
committerFlorian Fischer <florian.fl.fischer@fau.de>2019-06-24 17:21:09 +0200
commitf20c5285a0c0351a4cb8ac68a994a8d69457963e (patch)
tree3c14906e3982bcd22eded5ae144bfc5478b2889a /src/allocators/all.py
parent6dc6cea0b738c74852b920a9cf2fb1c49634dbe9 (diff)
downloadallocbench-f20c5285a0c0351a4cb8ac68a994a8d69457963e.tar.gz
allocbench-f20c5285a0c0351a4cb8ac68a994a8d69457963e.zip
add mesh and lockless_allocator definitions
Diffstat (limited to 'src/allocators/all.py')
-rw-r--r--src/allocators/all.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/allocators/all.py b/src/allocators/all.py
index bf2babd..f68863d 100644
--- a/src/allocators/all.py
+++ b/src/allocators/all.py
@@ -6,6 +6,7 @@ from src.allocators.tcmalloc import tcmalloc, tcmalloc_nofs
from src.allocators.jemalloc import jemalloc
from src.allocators.hoard import hoard
from src.allocators.supermalloc import supermalloc
+from src.allocators.llalloc import llalloc
mesh = Alloc("Mesh", sources=Alloc_Src("Mesh",
@@ -18,4 +19,4 @@ mesh = Alloc("Mesh", sources=Alloc_Src("Mesh",
"mkdir {dir}"])
allocators = [*src.allocators.glibcs.allocators, tcmalloc, tcmalloc_nofs,
- jemalloc, hoard, mesh, supermalloc]
+ jemalloc, hoard, mesh, supermalloc, llalloc]