X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5c43ee4e715c5099dac55f949b5c51b7b857ea49..361da673f9e66e13ce1ef5f21bc395439606c170:/include/smpi/smpi_helpers_internal.h diff --git a/include/smpi/smpi_helpers_internal.h b/include/smpi/smpi_helpers_internal.h index 57490ce54b..a55d1281b6 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-2021. 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. */ @@ -34,6 +34,11 @@ 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); +void __attribute__((noreturn)) smpi_exit(int status); #ifdef __cplusplus } // extern "C" #endif