mirror of https://github.com/thesofproject/sof.git
15 lines
422 B
Plaintext
15 lines
422 B
Plaintext
config DEBUG_HEAP
|
|
bool "Heap debug"
|
|
default n
|
|
help
|
|
Select for enable heap alloc debugging
|
|
|
|
config DEBUG_BLOCK_FREE
|
|
bool "Blocks freeing debug"
|
|
default n
|
|
help
|
|
It enables checking if free was called multiple times on
|
|
already freed block of memory. Enabling this feature increases
|
|
number of memory writes and reads, due to checks for memory patterns
|
|
that may be performed on allocation and deallocation.
|