tlsf_check_hook() function
Weak function called on every free block of memory allowing the user to implement application specific checks on the memory.
Syntax
__attribute__((weak)) bool tlsf_check_hook(void *start,
size_t size,
bool is_free);
Arguments
start
The start pointer to the memory of a block
size
The size of the memory in the block
is_free
Set to true when the memory belongs to a free block. False if it belongs to an allocated block.
Return value
true The checks found no inconsistency in the memory false The checks in the function highlighted an inconsistency in the memory