aboutsummaryrefslogtreecommitdiff
path: root/src/allocators/bumpptr.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/allocators/bumpptr.py')
-rw-r--r--src/allocators/bumpptr.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/allocators/bumpptr.py b/src/allocators/bumpptr.py
index 98cba4b..37fbfe5 100644
--- a/src/allocators/bumpptr.py
+++ b/src/allocators/bumpptr.py
@@ -27,3 +27,11 @@ from src.allocator import Allocator, BUILDDIR
bumpptr = Allocator("bumpptr", LD_PRELOAD=os.path.join(BUILDDIR, "bumpptr_alloc.so"),
color="xkcd:black")
+
+bumpptr_single_tsd = Allocator("bumpptr_single_tsd",
+ LD_PRELOAD=os.path.join(BUILDDIR, "bumpptr_alloc_single_tsd.so"),
+ color="xkcd:black")
+
+bumpptr_always_align = Allocator("bumpptr_always_align",
+ LD_PRELOAD=os.path.join(BUILDDIR, "bumpptr_alloc_always_align.so"),
+ color="xkcd:black")