aboutsummaryrefslogtreecommitdiff
path: root/src/targets.py
blob: 50fcab0a060b4f45a91c5a9aba50c5581ceae048 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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"
                       },
          }