aboutsummaryrefslogtreecommitdiff
path: root/src/allocators/glibc.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/glibc.py
parent589f45bd6e4058658ed0c86b7387802ee0be37d8 (diff)
downloadallocbench-51310acce858b34b8131c560cb430d86cd7624b4.tar.gz
allocbench-51310acce858b34b8131c560cb430d86cd7624b4.zip
add default colors to included allocators
Diffstat (limited to 'src/allocators/glibc.py')
-rw-r--r--src/allocators/glibc.py12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/allocators/glibc.py b/src/allocators/glibc.py
index fb962f5..94d3c24 100644
--- a/src/allocators/glibc.py
+++ b/src/allocators/glibc.py
@@ -31,12 +31,16 @@ class Glibc (Allocator):
super().__init__(name, **kwargs)
-glibc = Glibc("glibc")
+glibc = Glibc("glibc", color="xkcd:red")
-glibc_notc = Glibc("glibc-noThreadCache", configure_args="--disable-experimental-malloc")
+glibc_notc = Glibc("glibc-noThreadCache",
+ configure_args="--disable-experimental-malloc",
+ color="xkcd:maroon")
glibc_nofs = Glibc("glibc-noFalsesharing",
- patches=["{patchdir}/glibc_2.28_no_passive_falsesharing.patch"])
+ patches=["{patchdir}/glibc_2.28_no_passive_falsesharing.patch"],
+ color="xkcd:pink")
glibc_nofs_fancy = Glibc("glibc-noFalsesharingClever",
- patches=["{patchdir}/glibc_2.28_no_passive_falsesharing_fancy.patch"])
+ patches=["{patchdir}/glibc_2.28_no_passive_falsesharing_fancy.patch"],
+ color="xkcd:orange")