X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/39c935d6d5ee86d153f6f7e6a10d723ae7c57f6f..1ba3b199ce47dca5644315bf6009a795d3816ffd:/include/smpi/smpi_helpers_internal.h diff --git a/include/smpi/smpi_helpers_internal.h b/include/smpi/smpi_helpers_internal.h index 404d1cbcee..09c96852c0 100644 --- a/include/smpi/smpi_helpers_internal.h +++ b/include/smpi/smpi_helpers_internal.h @@ -36,8 +36,26 @@ int smpi_getopt(int argc, char* const* argv, const char* options); void* smpi_shared_malloc_intercept(size_t size, const char* file, int line); void* smpi_shared_calloc_intercept(size_t num_elm, size_t elem_size, const char* file, int line); +void* smpi_shared_realloc_intercept(void* data, size_t size, const char* file, int line); void smpi_shared_free(void* data); #ifdef __cplusplus +[[noreturn]] // c++11 +#else +_Noreturn // c11 +#endif +void smpi_exit(int status); +#ifdef __cplusplus } // extern "C" #endif + +#ifdef __cplusplus +namespace std { +extern "C" void* smpi_shared_malloc_intercept(size_t size, const char* file, int line); +extern "C" void* smpi_shared_calloc_intercept(size_t num_elm, size_t elem_size, const char* file, int line); +extern "C" void* smpi_shared_realloc_intercept(void* data, size_t size, const char* file, int line); +extern "C" void smpi_shared_free(void* ptr); + +extern "C" [[noreturn]] void smpi_exit(int status); +} // namespace std +#endif #endif