From 070731ecd8a80c23b9745020a570ad385ea14aee Mon Sep 17 00:00:00 2001 From: Florian Fischer Date: Sun, 11 Aug 2019 19:10:49 +0200 Subject: make bump pointer allocator available through src.allocators.bumpptr --- src/allocators/bumpptr.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 src/allocators/bumpptr.py (limited to 'src/allocators/bumpptr.py') diff --git a/src/allocators/bumpptr.py b/src/allocators/bumpptr.py new file mode 100644 index 0000000..f95a884 --- /dev/null +++ b/src/allocators/bumpptr.py @@ -0,0 +1,4 @@ +import os +from src.allocator import Allocator, builddir + +bumpptr = Allocator("bumpptr", LD_PRELOAD=os.path.join(builddir, "bumpptr_alloc.so"), color="xkcd:black") -- cgit v1.2.3