X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/794555c12839e503e3fd6e101e3e82336036939e..4b9e8701e4d7cb2a6a8b577af830c96f3d303f86:/src/smpi/internals/smpi_static_variables.cpp diff --git a/src/smpi/internals/smpi_static_variables.cpp b/src/smpi/internals/smpi_static_variables.cpp index 63ef04626e..c7edae08de 100644 --- a/src/smpi/internals/smpi_static_variables.cpp +++ b/src/smpi/internals/smpi_static_variables.cpp @@ -1,18 +1,18 @@ -/* Copyright (c) 2011-2017. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2011-2019. 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. */ -#include #include "private.hpp" +#include -typedef struct s_smpi_static { +struct s_smpi_static_t { void *ptr; void_f_pvoid_t free_fn; -} s_smpi_static_t; +}; /** - * \brief Holds a reference to all static variables that were registered + * @brief Holds a reference to all static variables that were registered * via smpi_register_static(). This helps to free them when * SMPI shuts down. */