]> AND Public Git Repository - simgrid.git/blobdiff - src/smpi/colls/allgatherv/allgatherv-ring.cpp
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Spell check.
[simgrid.git] / src / smpi / colls / allgatherv / allgatherv-ring.cpp
index 8d0a65d5c7b49b0806dbeb3c29700a89d1b0c08a..d6a9bec54136cbe372291deff7cdb9e491cd31ad 100644 (file)
@@ -61,16 +61,16 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  *   recv_type: data type of elements being received
  *   comm: communication
  * Descrp: Function works in P - 1 steps. In step i, node j - i -> j -> j+ i.
- * Auther: Ahmad Faraj
+ * Author: Ahmad Faraj
  ****************************************************************************/
 
 namespace simgrid{
 namespace smpi{
 
 int
-Coll_allgatherv_ring::allgatherv(void *send_buff, int send_count,
+Coll_allgatherv_ring::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)
 {