add support for MPI_Request_free() to MPI STUBS library

This commit is contained in:
Axel Kohlmeyer 2017-03-17 11:40:09 -04:00
parent 7fb741d53d
commit ae5ebf6001
2 changed files with 8 additions and 0 deletions

View File

@ -190,6 +190,13 @@ int MPI_Type_size(MPI_Datatype datatype, int *size)
/* ---------------------------------------------------------------------- */
int MPI_Request_free(MPI_Request *request)
{
return 0;
}
/* ---------------------------------------------------------------------- */
int MPI_Send(const void *buf, int count, MPI_Datatype datatype,
int dest, int tag, MPI_Comm comm)
{

View File

@ -89,6 +89,7 @@ int MPI_Finalize();
double MPI_Wtime();
int MPI_Type_size(int, int *);
int MPI_Request_free(MPI_Request *request);
int MPI_Send(const void *buf, int count, MPI_Datatype datatype,
int dest, int tag, MPI_Comm comm);