@@ -2232,6 +2232,12 @@ OMPI_DECLSPEC MPI_Request MPI_Request_f2c(MPI_Fint request);
22322232OMPI_DECLSPEC int MPI_Request_free (MPI_Request * request );
22332233OMPI_DECLSPEC int MPI_Request_get_status (MPI_Request request , int * flag ,
22342234 MPI_Status * status );
2235+ OMPI_DECLSPEC int MPI_Request_get_status_all (int count , const MPI_Request array_of_requests [], int * flag ,
2236+ MPI_Status array_of_statuses []);
2237+ OMPI_DECLSPEC int MPI_Request_get_status_any (int count , const MPI_Request array_of_requests [], int * index ,
2238+ int * flag , MPI_Status * status );
2239+ OMPI_DECLSPEC int MPI_Request_get_status_some (int incount , const MPI_Request array_of_requests [], int * outcount ,
2240+ int array_of_indices [], MPI_Status array_of_statuses []);
22352241OMPI_DECLSPEC int MPI_Rget (void * origin_addr , int origin_count , MPI_Datatype origin_datatype ,
22362242 int target_rank , MPI_Aint target_disp , int target_count , MPI_Datatype target_datatype ,
22372243 MPI_Win win , MPI_Request * request );
@@ -3383,6 +3389,12 @@ OMPI_DECLSPEC MPI_Request PMPI_Request_f2c(MPI_Fint request);
33833389OMPI_DECLSPEC int PMPI_Request_free (MPI_Request * request );
33843390OMPI_DECLSPEC int PMPI_Request_get_status (MPI_Request request , int * flag ,
33853391 MPI_Status * status );
3392+ OMPI_DECLSPEC int PMPI_Request_get_status_all (int count , const MPI_Request array_of_requests [], int * flag ,
3393+ MPI_Status array_of_statuses []);
3394+ OMPI_DECLSPEC int PMPI_Request_get_status_any (int count , const MPI_Request array_of_requests [], int * index ,
3395+ int * flag , MPI_Status * status );
3396+ OMPI_DECLSPEC int PMPI_Request_get_status_some (int incount , const MPI_Request array_of_requests [], int * outcount ,
3397+ int array_of_indices [], MPI_Status array_of_statuses []);
33863398OMPI_DECLSPEC int PMPI_Rget (void * origin_addr , int origin_count , MPI_Datatype origin_datatype ,
33873399 int target_rank , MPI_Aint target_disp , int target_count , MPI_Datatype target_datatype ,
33883400 MPI_Win win , MPI_Request * request );
0 commit comments