Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Need distrib.cmake for update_xml file and update nsis script for headers.
[simgrid.git] / include / xbt / mmalloc.h
index 53d0c84..e726950 100644 (file)
@@ -34,9 +34,6 @@ extern void *mmalloc(xbt_mheap_t md, size_t size);
    SIZE bytes long.  */
 extern void *mrealloc(xbt_mheap_t md, void *ptr, size_t size);
 
-/* Allocate NMEMB elements of SIZE bytes each, all initialized to 0.  */
-extern void *mcalloc(xbt_mheap_t md, size_t nmemb, size_t size);
-
 /* Free a block allocated by `mmalloc', `mrealloc' or `mcalloc'.  */
 extern void mfree(xbt_mheap_t md, void *ptr);
 
@@ -63,5 +60,7 @@ xbt_mheap_t mmalloc_get_current_heap(void);
 
 int mmalloc_compare_heap(xbt_mheap_t mdp1, xbt_mheap_t mdp2, void *std_heap_addr);
 
+void mmalloc_backtrace_display(xbt_mheap_t mdp, void *addr);
+
 
 #endif                          /* MMALLOC_H */