X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/963b8d1182796bce58318c92742863a8d3f32b37..f703e5eea34c57dbfcda1f9c6d2e8ac3f1512062:/include/xbt/mmalloc.h diff --git a/include/xbt/mmalloc.h b/include/xbt/mmalloc.h index 74904083c6..c259bf6d2e 100644 --- a/include/xbt/mmalloc.h +++ b/include/xbt/mmalloc.h @@ -61,8 +61,11 @@ XBT_PUBLIC( xbt_mheap_t ) mmalloc_get_default_md(void); void mmalloc_set_current_heap(xbt_mheap_t new_heap); xbt_mheap_t mmalloc_get_current_heap(void); -int mmalloc_compare_heap(xbt_mheap_t heap1, xbt_mheap_t heap2, xbt_dynar_t *stacks1, xbt_dynar_t *stacks2, xbt_dynar_t *equals); +int mmalloc_compare_heap(xbt_mheap_t heap1, xbt_mheap_t heap2, xbt_dynar_t *stacks1, xbt_dynar_t *stacks2, xbt_dynar_t equals); int mmalloc_linear_compare_heap(xbt_mheap_t heap1, xbt_mheap_t heap2); +void init_heap_information(xbt_mheap_t heap1, xbt_mheap_t heap2); +void match_equals(xbt_dynar_t list, xbt_dynar_t equals); +int compare_area(void *area1, void* area2, xbt_dynar_t previous, xbt_dynar_t equals); void mmalloc_backtrace_block_display(void* heapinfo, int block); void mmalloc_backtrace_fragment_display(void* heapinfo, int block, int frag); @@ -70,6 +73,6 @@ void mmalloc_backtrace_display(void *addr); int is_free_area(void *area, xbt_mheap_t heap); - +size_t mmalloc_get_chunks_used(xbt_mheap_t); #endif /* MMALLOC_H */