From b5d28616aaa46586b429f620cb94a2ab05efe300 Mon Sep 17 00:00:00 2001 From: Florian Fischer Date: Mon, 19 Aug 2019 18:38:14 +0200 Subject: add allocator definition for chattymalloc --- src/allocators/chattymalloc.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 src/allocators/chattymalloc.py (limited to 'src') diff --git a/src/allocators/chattymalloc.py b/src/allocators/chattymalloc.py new file mode 100644 index 0000000..3079667 --- /dev/null +++ b/src/allocators/chattymalloc.py @@ -0,0 +1,4 @@ +import os +from src.allocator import Allocator, builddir + +chattymalloc = Allocator("chattymalloc", LD_PRELOAD=os.path.join(builddir, "chattymalloc.so"), color="xkcd:black") -- cgit v1.2.3