1.拼写错误 2.未使用的参数使用void 3.删除lint相关注释 4.函数返回值处理 Signed-off-by: zhushengle <zhushengle@huawei.com> Change-Id: I155d786172d62f47d940b32b0a1b36406d3c047f
42 lines
970 B
Plaintext
42 lines
970 B
Plaintext
config KERNEL_LMS
|
|
bool "Enable Lite Memory Sanitizer"
|
|
default n
|
|
depends on KERNEL_EXTKERNEL && DEBUG_VERSION && LIB_LIBC
|
|
help
|
|
Select y to build LiteOS with memory sanitizer.
|
|
|
|
config LMS_MAX_RECORD_POOL_NUM
|
|
int "Lms check pool max num"
|
|
default 50
|
|
depends on KERNEL_LMS
|
|
help
|
|
The Max num of lms check pool
|
|
|
|
config LMS_LOAD_CHECK
|
|
bool "Enable lms read check"
|
|
default y
|
|
depends on KERNEL_LMS
|
|
help
|
|
Select y to enable read check.
|
|
|
|
config LMS_STORE_CHECK
|
|
bool "Enable lms write check"
|
|
default y
|
|
depends on KERNEL_LMS
|
|
help
|
|
Select y to enable write check.
|
|
|
|
config LMS_CHECK_STRICT
|
|
bool "Enable lms strict check, byte-by-byte"
|
|
default n
|
|
depends on KERNEL_LMS
|
|
help
|
|
Select y to enable byte-by-byte check in lms
|
|
|
|
config LMS_LIBC_FULL_CHECK
|
|
bool "Enable libc all function do lms check"
|
|
default n
|
|
depends on KERNEL_LMS
|
|
help
|
|
Select y to enable libc full check
|