aboutsummaryrefslogtreecommitdiff
path: root/src/targets.py
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2019-02-08 13:31:11 +0100
committerFlorian Fischer <florian.fl.fischer@fau.de>2019-02-08 13:31:11 +0100
commitf2327ada5590f40137416f301762cd3c11ab36b6 (patch)
tree7e49bfbb189ce34c84384a444aed13125bc6c8ff /src/targets.py
parent9240e149758e6e3923151687a7830e8940567ddc (diff)
downloadallocbench-f2327ada5590f40137416f301762cd3c11ab36b6.tar.gz
allocbench-f2327ada5590f40137416f301762cd3c11ab36b6.zip
s/target/allocator/ and remove analyse feature
Use systemwide installed allocators by default
Diffstat (limited to 'src/targets.py')
-rw-r--r--src/targets.py19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/targets.py b/src/targets.py
deleted file mode 100644
index 50fcab0..0000000
--- a/src/targets.py
+++ /dev/null
@@ -1,19 +0,0 @@
-targets = {"glibc" : {
- "cmd_prefix" : "",
- "binary_suffix" : "",
- "LD_PRELOAD" : "",
- "color" : "C1"
- },
- "tcmalloc" : {
- "cmd_prefix" : "",
- "binary_suffix" : "",
- "LD_PRELOAD" : "targets/libtcmalloc.so",
- "color" : "C2"
- },
- "jemalloc" : {
- "cmd_prefix" : "",
- "binary_suffix" : "",
- "LD_PRELOAD" : "targets/libjemalloc.so",
- "color" : "C3"
- },
- }