1config KERNEL_LMS 2 bool "Enable Lite Memory Sanitizer" 3 default n 4 depends on KERNEL_EXTKERNEL && DEBUG_VERSION && KERNEL_BACKTRACE 5 help 6 Select y to build LiteOS with memory sanitizer. 7 8config LMS_MAX_RECORD_POOL_NUM 9 int "Lms check pool max num" 10 default 50 11 depends on KERNEL_LMS 12 help 13 The Max num of lms check pool 14 15config LMS_LOAD_CHECK 16 bool "Enable lms read check" 17 default y 18 depends on KERNEL_LMS 19 help 20 Select y to enable read check. 21 22config LMS_STORE_CHECK 23 bool "Enable lms write check" 24 default y 25 depends on KERNEL_LMS 26 help 27 Select y to enable write check. 28 29config LMS_CHECK_STRICT 30 bool "Enable lms strict check, byte-by-byte" 31 default n 32 depends on KERNEL_LMS 33 help 34 Select y to enable byte-by-byte check in Lms 35