X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f285c709071d6f01cc15e89c7fb974f6a7d5027e..872cf95ab5a2b08aa1f2c6ebba29b9f86b0ba54e:/src/include/xbt/mmalloc.h?ds=sidebyside diff --git a/src/include/xbt/mmalloc.h b/src/include/xbt/mmalloc.h index 6a872fec87..bdff2c11a2 100644 --- a/src/include/xbt/mmalloc.h +++ b/src/include/xbt/mmalloc.h @@ -50,13 +50,14 @@ XBT_PUBLIC void mfree(xbt_mheap_t md, void* ptr); XBT_PUBLIC xbt_mheap_t xbt_mheap_new(void* baseaddr, int options); -XBT_PUBLIC void xbt_mheap_destroy_no_free(xbt_mheap_t md); - XBT_PUBLIC void* xbt_mheap_destroy(xbt_mheap_t md); /* To get the heap used when using the legacy version malloc/free/realloc and such */ xbt_mheap_t mmalloc_get_current_heap(void); +/* Returns true if we are using the internal mmalloc, and false if we are using the libc's malloc */ +XBT_PUBLIC int malloc_use_mmalloc(void); + #endif SG_END_DECL