X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f3b7e5f4b4d7c87ee3e8827313ec966ea8fc8387..HEAD:/src/smpi/bindings/smpi_pmpi_info.cpp diff --git a/src/smpi/bindings/smpi_pmpi_info.cpp b/src/smpi/bindings/smpi_pmpi_info.cpp index b8a21443c2..8784a77d9b 100644 --- a/src/smpi/bindings/smpi_pmpi_info.cpp +++ b/src/smpi/bindings/smpi_pmpi_info.cpp @@ -1,10 +1,11 @@ -/* Copyright (c) 2007-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-2023. 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 "private.hpp" #include "smpi_info.hpp" +#include "smpi_comm.hpp" XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(smpi_pmpi); @@ -27,6 +28,7 @@ int PMPI_Info_set( MPI_Info info, const char *key, const char *value){ int PMPI_Info_free( MPI_Info *info){ CHECK_NULL(1, MPI_ERR_ARG, info) CHECK_INFO(1, *info) + (*info)->mark_as_deleted(); simgrid::smpi::Info::unref(*info); *info=MPI_INFO_NULL; return MPI_SUCCESS;