aboutsummaryrefslogtreecommitdiff
path: root/src/targets.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/targets.py')
-rw-r--r--src/targets.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/targets.py b/src/targets.py
new file mode 100644
index 0000000..50fcab0
--- /dev/null
+++ b/src/targets.py
@@ -0,0 +1,19 @@
+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"
+ },
+ }