mi_block_visit_fun

Visitor function passed to mi_heap_visit_blocks()

extern (C)
alias mi_block_visit_fun = bool function
(
const(mi_heap_t)* heap
,,
void* block
,
size_t block_size
,
const(void)* arg
)

Return Value

true if ok, false to stop visiting (i.e. break)

This function is always first called for every area with block as a NULL pointer. If visit_all_blocks was true, the function is then called for every allocated block in that area.

Meta