Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
(painfully) constify colls.
[simgrid.git] / src / smpi / colls / allgatherv / allgatherv-ompi-bruck.cpp
index b4c2b033ce730b9d785a3eb7d59979a71f7bd67e..91d99777781cb27469986e5c38eec7d654ca1120 100644 (file)
 namespace simgrid{
 namespace smpi{
 
-int Coll_allgatherv_ompi_bruck::allgatherv(void *sbuf, int scount,
+int Coll_allgatherv_ompi_bruck::allgatherv(const void *sbuf, int scount,
                                            MPI_Datatype sdtype,
-                                           void *rbuf, int *rcounts,
-                                           int *rdispls,
+                                           void *rbuf, const int *rcounts,
+                                           const int *rdispls,
                                            MPI_Datatype rdtype,
                                            MPI_Comm comm)
 {