summaryrefslogtreecommitdiff
path: root/config/debug/dmalloc.in
blob: 692c2292e4504f39f0bf6a3f269339a433d0a9e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# dmalloc debug facility

menuconfig DMALLOC
    bool
    prompt "dmalloc"
    default n
    depends on ! BARE_METAL

if DMALLOC

choice
    bool
    prompt "dmalloc version"

config DMALLOC_V_5_4_3
    bool
    prompt "5.4.3 (OBSOLETE)"
    depends on OBSOLETE

config DMALLOC_V_5_5_2
    bool
    prompt "5.5.2"

# CT_INSERT_VERSION_ABOVE
# Don't remove above line!
endchoice

config DMALLOC_VERSION
    string
    default "5.4.3" if DMALLOC_V_5_4_3
    default "5.5.2" if DMALLOC_V_5_5_2
# CT_INSERT_VERSION_STRING_ABOVE
# Don't remove above line!

endif