X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d20f024dba9ff1e9c8822237caaf963b9e913889..488dda0c43d26f0a770e1d5b47f73148e153949b:/src/smpi/colls/allgatherv/allgatherv-GB.cpp diff --git a/src/smpi/colls/allgatherv/allgatherv-GB.cpp b/src/smpi/colls/allgatherv/allgatherv-GB.cpp index 09636066fe..d3de949c9c 100644 --- a/src/smpi/colls/allgatherv/allgatherv-GB.cpp +++ b/src/smpi/colls/allgatherv/allgatherv-GB.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2013-2017. The SimGrid Team. +/* Copyright (c) 2013-2019. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -10,9 +10,9 @@ namespace simgrid{ namespace smpi{ // Allgather - gather/bcast algorithm -int Coll_allgatherv_GB::allgatherv(void *send_buff, int send_count, +int Coll_allgatherv_GB::allgatherv(const void *send_buff, int send_count, MPI_Datatype send_type, void *recv_buff, - int *recv_counts, int *recv_disps, MPI_Datatype recv_type, + const int *recv_counts, const int *recv_disps, MPI_Datatype recv_type, MPI_Comm comm) { Colls::gatherv(send_buff, send_count, send_type, recv_buff, recv_counts, recv_disps, recv_type, 0, comm);