X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/79f4c4c467150b3bea841b968cabd629e9d9282a..d3ff5bc1abcc24a092161f238c69447a72201746:/include/smpi/smpi_helpers_internal.h diff --git a/include/smpi/smpi_helpers_internal.h b/include/smpi/smpi_helpers_internal.h index 6c226fb41a..c24e421e5e 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-2020. 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,8 +7,8 @@ #define SMPI_HELPERS_INTERNAL_H #include -#include /* for getopt(), don't remove */ -#include /* for getopt(), don't remove */ +#include /* for getopt() on OpenIndiana, don't remove */ +#include /* for getopt() on OpenIndiana, don't remove */ #include #include @@ -34,6 +34,9 @@ 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_free(void* data); #ifdef __cplusplus } // extern "C" #endif