X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/96cedde3cdbc0b8ffc3f096a1b65d021b0226f99..81a26be55f972dc046ce7079131fec62eb992a7b:/include/smpi/smpi_helpers_internal.h diff --git a/include/smpi/smpi_helpers_internal.h b/include/smpi/smpi_helpers_internal.h index 5a3e4b6a91..53ca8a710d 100644 --- a/include/smpi/smpi_helpers_internal.h +++ b/include/smpi/smpi_helpers_internal.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2018-2019. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2018-2022. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -7,6 +7,8 @@ #define SMPI_HELPERS_INTERNAL_H #include +#include /* for getopt() on OpenIndiana, don't remove */ +#include /* for getopt() on OpenIndiana, don't remove */ #include #include @@ -32,7 +34,28 @@ int smpi_getopt_long(int argc, char* const* argv, const char* options, const str int* opt_index); 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