Commit ae5ebf60 authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

add support for MPI_Request_free() to MPI STUBS library

parent 7fb741d5
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -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)
{
+1 −0
Original line number Diff line number Diff line
@@ -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);