X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/dbfe89d3374d21b871e1114e7650717fd6b826d4..abf3b21ad3f4a19475431076e6e2b26f76d2e7d6:/src/smpi/bindings/smpi_pmpi_op.cpp diff --git a/src/smpi/bindings/smpi_pmpi_op.cpp b/src/smpi/bindings/smpi_pmpi_op.cpp index a6200c1d98..e693e10939 100644 --- a/src/smpi/bindings/smpi_pmpi_op.cpp +++ b/src/smpi/bindings/smpi_pmpi_op.cpp @@ -1,10 +1,11 @@ -/* Copyright (c) 2007-2021. 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_op.hpp" +#include "smpi_comm.hpp" XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(smpi_pmpi); @@ -24,6 +25,7 @@ int PMPI_Op_free(MPI_Op * op) CHECK_MPI_NULL(1, MPI_OP_NULL, MPI_ERR_OP, *op) if((*op)->is_predefined()) return MPI_ERR_OP; + (*op)->mark_as_deleted(); simgrid::smpi::Op::unref(op); *op = MPI_OP_NULL; return MPI_SUCCESS;