From f20c5285a0c0351a4cb8ac68a994a8d69457963e Mon Sep 17 00:00:00 2001 From: Florian Fischer Date: Mon, 24 Jun 2019 17:21:09 +0200 Subject: add mesh and lockless_allocator definitions --- src/allocators/all.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/allocators/all.py') 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] -- cgit v1.2.3