From 51310acce858b34b8131c560cb430d86cd7624b4 Mon Sep 17 00:00:00 2001 From: Florian Fischer Date: Mon, 1 Jul 2019 13:45:06 +0200 Subject: add default colors to included allocators --- src/allocators/tcmalloc.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/allocators/tcmalloc.py') 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") -- cgit v1.2.3