aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--allocbench/allocators/chattymalloc.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/allocbench/allocators/chattymalloc.py b/allocbench/allocators/chattymalloc.py
index 0cbcb88..b410733 100644
--- a/allocbench/allocators/chattymalloc.py
+++ b/allocbench/allocators/chattymalloc.py
@@ -24,14 +24,14 @@ and saves each call and its result to a memory mapped output file.
from allocbench.artifact import GitArtifact
from allocbench.allocator import Allocator
-VERSION = "e237a876227396203abae3872754ffaf8cc7e180"
+VERSION = "9d8412917f455ea08fa086e0f668ea5725cb324a"
class Chattymalloc(Allocator):
"""Chattymalloc definition for allocbench"""
sources = GitArtifact("chattymalloc",
- "https://github.com/fischerling/chattymalloc")
+ "https://gitlab.cs.fau.de/aj46ezos/chattymalloc")
def __init__(self, name, **kwargs):
@@ -44,7 +44,7 @@ class Chattymalloc(Allocator):
]
self.ld_preload = "{dir}/libchattymalloc.so"
- self.cmd_prefix = "env CHATTYMALLOC_FILE={{result_dir}}/{{perm}}.trace"
+ self.cmd_prefix = "env CHATTYMALLOC_FILE={{result_dir}}/{{perm}}-%d.trace"
self.analyze_alloc = True
super().__init__(name, **kwargs)