X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/064eb6c62faa9c6a00c67f5fff49f64a89b2f26c..f25d6d06863493bf61f4954f1eaa27268c6d096d:/src/smpi/smpi_group.c diff --git a/src/smpi/smpi_group.c b/src/smpi/smpi_group.c index e88ffa1460..587ab1df5e 100644 --- a/src/smpi/smpi_group.c +++ b/src/smpi/smpi_group.c @@ -1,8 +1,8 @@ -/* Copyright (c) 2010. The SimGrid Team. +/* Copyright (c) 2010, 2013-2014. 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. */ + * under the terms of the license (GNU LGPL) which comes with this package. */ #include "private.h" @@ -75,7 +75,6 @@ MPI_Group smpi_group_copy(MPI_Group origin) void smpi_group_destroy(MPI_Group group) { - XBT_VERB("trying to free group %p, refcount = %d", group, group->refcount); if(group!= smpi_comm_group(MPI_COMM_WORLD) && group != MPI_GROUP_NULL && group != smpi_comm_group(MPI_COMM_SELF) @@ -121,7 +120,6 @@ int smpi_group_unuse(MPI_Group group) { group->refcount--; if (group->refcount <= 0) { - XBT_VERB("freeing group %p", group); xbt_free(group->rank_to_index_map); xbt_free(group->index_to_rank_map); xbt_free(group);