aboutsummaryrefslogtreecommitdiff
path: root/src/allocators/tcmalloc.py
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2019-07-01 13:45:06 +0200
committerFlorian Fischer <florian.fl.fischer@fau.de>2019-07-01 13:45:06 +0200
commit51310acce858b34b8131c560cb430d86cd7624b4 (patch)
tree0a71daf1c49cd583092fb367b58ce82e02147b47 /src/allocators/tcmalloc.py
parent589f45bd6e4058658ed0c86b7387802ee0be37d8 (diff)
downloadallocbench-51310acce858b34b8131c560cb430d86cd7624b4.tar.gz
allocbench-51310acce858b34b8131c560cb430d86cd7624b4.zip
add default colors to included allocators
Diffstat (limited to 'src/allocators/tcmalloc.py')
-rw-r--r--src/allocators/tcmalloc.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/allocators/tcmalloc.py b/src/allocators/tcmalloc.py
index b6da1e7..a442e96 100644
--- a/src/allocators/tcmalloc.py
+++ b/src/allocators/tcmalloc.py
@@ -20,7 +20,8 @@ class TCMalloc (src.allocator.Allocator):
super().__init__(name, **kwargs)
-tcmalloc = TCMalloc("TCMalloc")
+tcmalloc = TCMalloc("TCMalloc", color="xkcd:blue")
tcmalloc_nofs = TCMalloc("TCMalloc-NoFalsesharing",
- patches=["{patchdir}/tcmalloc_2.7_no_active_falsesharing.patch"])
+ patches=["{patchdir}/tcmalloc_2.7_no_active_falsesharing.patch"],
+ color="xkcd:navy")