@@ -55,57 +55,57 @@ int mca_coll_sync_bcast(void *buff, int count,
5555 struct ompi_communicator_t * comm ,
5656 mca_coll_base_module_t * module );
5757
58- int mca_coll_sync_exscan (void * sbuf , void * rbuf , int count ,
58+ int mca_coll_sync_exscan (const void * sbuf , void * rbuf , int count ,
5959 struct ompi_datatype_t * dtype ,
6060 struct ompi_op_t * op ,
6161 struct ompi_communicator_t * comm ,
6262 mca_coll_base_module_t * module );
6363
64- int mca_coll_sync_gather (void * sbuf , int scount ,
64+ int mca_coll_sync_gather (const void * sbuf , int scount ,
6565 struct ompi_datatype_t * sdtype ,
6666 void * rbuf , int rcount ,
6767 struct ompi_datatype_t * rdtype ,
6868 int root ,
6969 struct ompi_communicator_t * comm ,
7070 mca_coll_base_module_t * module );
7171
72- int mca_coll_sync_gatherv (void * sbuf , int scount ,
72+ int mca_coll_sync_gatherv (const void * sbuf , int scount ,
7373 struct ompi_datatype_t * sdtype ,
74- void * rbuf , int * rcounts , int * disps ,
74+ void * rbuf , const int * rcounts , const int * disps ,
7575 struct ompi_datatype_t * rdtype ,
7676 int root ,
7777 struct ompi_communicator_t * comm ,
7878 mca_coll_base_module_t * module );
7979
80- int mca_coll_sync_reduce (void * sbuf , void * rbuf , int count ,
80+ int mca_coll_sync_reduce (const void * sbuf , void * rbuf , int count ,
8181 struct ompi_datatype_t * dtype ,
8282 struct ompi_op_t * op ,
8383 int root ,
8484 struct ompi_communicator_t * comm ,
8585 mca_coll_base_module_t * module );
8686
87- int mca_coll_sync_reduce_scatter (void * sbuf , void * rbuf ,
88- int * rcounts ,
87+ int mca_coll_sync_reduce_scatter (const void * sbuf , void * rbuf ,
88+ const int * rcounts ,
8989 struct ompi_datatype_t * dtype ,
9090 struct ompi_op_t * op ,
9191 struct ompi_communicator_t * comm ,
9292 mca_coll_base_module_t * module );
9393
94- int mca_coll_sync_scan (void * sbuf , void * rbuf , int count ,
94+ int mca_coll_sync_scan (const void * sbuf , void * rbuf , int count ,
9595 struct ompi_datatype_t * dtype ,
9696 struct ompi_op_t * op ,
9797 struct ompi_communicator_t * comm ,
9898 mca_coll_base_module_t * module );
9999
100- int mca_coll_sync_scatter (void * sbuf , int scount ,
100+ int mca_coll_sync_scatter (const void * sbuf , int scount ,
101101 struct ompi_datatype_t * sdtype ,
102102 void * rbuf , int rcount ,
103103 struct ompi_datatype_t * rdtype ,
104104 int root ,
105105 struct ompi_communicator_t * comm ,
106106 mca_coll_base_module_t * module );
107107
108- int mca_coll_sync_scatterv (void * sbuf , int * scounts , int * disps ,
108+ int mca_coll_sync_scatterv (const void * sbuf , const int * scounts , const int * disps ,
109109 struct ompi_datatype_t * sdtype ,
110110 void * rbuf , int rcount ,
111111 struct ompi_datatype_t * rdtype ,
0 commit comments