aboutsummaryrefslogtreecommitdiff
path: root/src/allocators
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2020-02-19 18:13:39 +0100
committerFlorian Fischer <florian.fl.fischer@fau.de>2020-02-19 18:13:39 +0100
commitb11b0b130a15f863ba1e0b851033a9e76cc4a8f2 (patch)
treeb88ebea07b37df8bd1d037c2f55b640a2c8dbe9f /src/allocators
parent3b1e4b4bfd286c32be0a1413d22ddc991dc00d70 (diff)
downloadallocbench-b11b0b130a15f863ba1e0b851033a9e76cc4a8f2.tar.gz
allocbench-b11b0b130a15f863ba1e0b851033a9e76cc4a8f2.zip
fix tcmalloc_gperftools_cacheline_exclusive
Diffstat (limited to 'src/allocators')
-rw-r--r--src/allocators/tcmalloc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/allocators/tcmalloc.py b/src/allocators/tcmalloc.py
index e52ecfa..97c94e2 100644
--- a/src/allocators/tcmalloc.py
+++ b/src/allocators/tcmalloc.py
@@ -82,7 +82,7 @@ tcmalloc_gperftools_align = TCMallocGperftools("TCMalloc-Aligned",
tcmalloc_gperftools_align.LD_PRELOAD = f"{BUILDDIR}/align_to_cl.so {tcmalloc_gperftools_align.LD_PRELOAD}"
-tcmalloc_gperftools_cacheline_exclusive = TCMalloc("TCMalloc-Cacheline-Exclusive",
+tcmalloc_gperftools_cacheline_exclusive = TCMallocGperftools("TCMalloc-Cacheline-Exclusive",
patches=["{patchdir}/tcmalloc_2.7_cacheline_exclusive.patch"],
version="gperftools-2.7",
color="xkcd:royal blue")