1menuconfig RT_USING_ADT
2    bool "Enable ADT(abstract data type)"
3    default y if ARCH_MM_MMU
4    default n
5
6config RT_USING_ADT_AVL
7    bool "AVL tree"
8    depends on RT_USING_ADT
9    default y
10
11config RT_USING_ADT_BITMAP
12    bool "Bitmap"
13    depends on RT_USING_ADT
14    default y
15
16config RT_USING_ADT_HASHMAP
17    bool "HashMap"
18    depends on RT_USING_ADT
19    default y
20
21config RT_USING_ADT_REF
22    bool "Reference API"
23    depends on RT_USING_ADT
24    default y
25