-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathKconfig
More file actions
72 lines (54 loc) · 1.3 KB
/
Copy pathKconfig
File metadata and controls
72 lines (54 loc) · 1.3 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
menu "DataStruct Modules"
menuconfig MOD_ENABLE_BTREE
bool "BTree (Binary Tree)"
default n
menuconfig MOD_ENABLE_CSTRING
bool "CString (C-style string)"
default n
menuconfig MOD_ENABLE_CTL
bool "CTL (Container Template Library)"
default n
menuconfig MOD_ENABLE_DLIST
bool "DList (Doubly Linked List)"
default n
menuconfig MOD_ENABLE_FIFOFAST
bool "FIFOFast (Fast FIFO Header File)"
default n
menuconfig MOD_ENABLE_HASHMAP
bool "HashMap (Hash Map)"
default n
menuconfig MOD_ENABLE_JSON
bool "JSON (Json Parser)"
default n
menuconfig MOD_ENABLE_LFBB
bool "LFBB (Lock Free Bipartite Buffer)"
default n
menuconfig MOD_ENABLE_LFIFO
bool "LFIFO (Lock Free FIFO)"
default n
menuconfig MOD_ENABLE_LINUX_LIST
bool "LinuxList (Linux Style List)"
default n
menuconfig MOD_ENABLE_LWRB
bool "LWRB (Lightweight Ring Buffer)"
default n
menuconfig MOD_ENABLE_PQUEUE
bool "PQueue (Priority Queue)"
default n
menuconfig MOD_ENABLE_SDS
bool "SDS (Simple Dynamic String)"
select MOD_ENABLE_LWPRINTF
default n
menuconfig MOD_ENABLE_STRUCT2JSON
bool "Struct2Json (Struct to Json)"
default n
menuconfig MOD_ENABLE_UDICT
bool "UDict (Universal Dictionary)"
select MOD_ENABLE_UTHASH
default n
menuconfig MOD_ENABLE_ULIST
bool "UList (Universal Mem Continuous List)"
menuconfig MOD_ENABLE_UTHASH
bool "UTHash (Hash Table)"
default n
endmenu