Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fight for better integration of mmalloc, mc and xbt
[simgrid.git] / src / xbt / mmalloc / mcalloc.c
index 6c26022..92f7eb1 100644 (file)
@@ -26,14 +26,3 @@ mcalloc (void *md, register size_t nmemb, register size_t size)
     }
   return (result);
 }
-
-/* When using this package, provide a version of malloc/realloc/free built
-   on top of it, so that if we use the default sbrk() region we will not
-   collide with another malloc package trying to do the same thing, if
-   the application contains any "hidden" calls to malloc/realloc/free (such
-   as inside a system library).
-   FIXME: disabled for now */
-
-//void* calloc (size_t nmemb, size_t size) {
-//  return (mcalloc ((void*) NULL, nmemb, size));
-//}