Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
give access to first dependency and first successor of an activity
[simgrid.git] / include / smpi / smpi_helpers.h
index 68df20f..9760971 100644 (file)
 #ifndef SMPI_NO_OVERRIDE_MALLOC
 #define malloc(x) smpi_shared_malloc_intercept((x), __FILE__, __LINE__)
 #define calloc(x, y) smpi_shared_calloc_intercept((x), (y), __FILE__, __LINE__)
+#define realloc(x, y) smpi_shared_realloc_intercept((x), (y), __FILE__, __LINE__)
 #define free(x) smpi_shared_free(x)
 #endif
+
+#define exit(x) smpi_exit(x)
+
 #endif