Skip to content
Snippets Groups Projects
Commit ae5ebf60 authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

add support for MPI_Request_free() to MPI STUBS library

parent 7fb741d5
No related branches found
No related tags found
No related merge requests found
......@@ -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)
{
......
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment