1config DEBUG_HEAP 2 bool "Heap debug" 3 default n 4 help 5 Select for enable heap alloc debugging 6 7config DEBUG_BLOCK_FREE 8 bool "Blocks freeing debug" 9 default n 10 help 11 It enables checking if free was called multiple times on 12 already freed block of memory. Enabling this feature increases 13 number of memory writes and reads, due to checks for memory patterns 14 that may be performed on allocation and deallocation. 15