aboutsummaryrefslogtreecommitdiff
path: root/src/allocators/chattymalloc.py
blob: 6688f51491275e7b1433345e6e0052345f20ae66 (plain)
1
2
3
4
5
6
import os
from src.allocator import Allocator, builddir

chattymalloc = Allocator("chattymalloc",
                         LD_PRELOAD=os.path.join(builddir, "chattymalloc.so"),
                         cmd_prefix="env CHATTYMALLOC_FILE={{result_dir}}/chatty_{{perm}}.txt")