X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/df86235deb77e8678d0b590c43a54f812ebb8566..1d473a7bee4823d6f5c5d9a3cfbee5b51014d671:/src/smpi/private.h?ds=sidebyside diff --git a/src/smpi/private.h b/src/smpi/private.h index 15865c7f6b..541d6dcdc9 100644 --- a/src/smpi/private.h +++ b/src/smpi/private.h @@ -171,8 +171,6 @@ MPI_Request smpi_mpi_isend(void *buf, int count, MPI_Datatype datatype, int dst, int tag, MPI_Comm comm); MPI_Request smpi_mpi_issend(void *buf, int count, MPI_Datatype datatype, int dst, int tag, MPI_Comm comm); -MPI_Request smpi_mpi_ssend(void *buf, int count, MPI_Datatype datatype, - int dst, int tag, MPI_Comm comm); MPI_Request smpi_irecv_init(void *buf, int count, MPI_Datatype datatype, int src, int tag, MPI_Comm comm); MPI_Request smpi_mpi_irecv(void *buf, int count, MPI_Datatype datatype, @@ -181,6 +179,8 @@ void smpi_mpi_recv(void *buf, int count, MPI_Datatype datatype, int src, int tag, MPI_Comm comm, MPI_Status * status); void smpi_mpi_send(void *buf, int count, MPI_Datatype datatype, int dst, int tag, MPI_Comm comm); +void smpi_mpi_ssend(void *buf, int count, MPI_Datatype datatype, int dst, + int tag, MPI_Comm comm); void smpi_mpi_sendrecv(void *sendbuf, int sendcount, MPI_Datatype sendtype, int dst, int sendtag, void *recvbuf, int recvcount, MPI_Datatype recvtype, int src, int recvtag,