X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ad12e936954df10a0395da3b161e820e07e97f52..219621110c7f3906fa7e9bee2efe3ecab596f773:/src/smpi/private.h diff --git a/src/smpi/private.h b/src/smpi/private.h index 244af7a119..a604da4463 100644 --- a/src/smpi/private.h +++ b/src/smpi/private.h @@ -94,6 +94,7 @@ void smpi_mpi_send(void* buf, int count, MPI_Datatype datatype, int dst, int tag 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, MPI_Comm comm, MPI_Status* status); int smpi_mpi_test(MPI_Request* request, MPI_Status* status); int smpi_mpi_testany(int count, MPI_Request requests[], int* index, MPI_Status* status); +int smpi_mpi_get_count(MPI_Status* status, MPI_Datatype datatype); void smpi_mpi_wait(MPI_Request* request, MPI_Status* status); int smpi_mpi_waitany(int count, MPI_Request requests[], MPI_Status* status); void smpi_mpi_waitall(int count, MPI_Request requests[], MPI_Status status[]);