From 17407118a68e7d3aa002e4b99dc9c1dc311a238f Mon Sep 17 00:00:00 2001 From: markls Date: Fri, 25 Apr 2008 23:47:16 +0000 Subject: [PATCH] need MPI_Wait in header file... git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@5350 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- include/smpi/smpi.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/smpi/smpi.h b/include/smpi/smpi.h index d5ef3c1e3f..8b0352b52d 100644 --- a/include/smpi/smpi.h +++ b/include/smpi/smpi.h @@ -93,6 +93,7 @@ extern smpi_mpi_global_t smpi_mpi_global; #define MPI_Isend(a, b, c, d, e, f, g) SMPI_MPI_Isend(a, b, c, d, e, f, g) #define MPI_Send(a, b, c, d, e, f) SMPI_MPI_Send(a, b, c, d, e, f) #define MPI_Bcast(a, b, c, d, e) SMPI_MPI_Bcast(a, b, c, d, e) +#define MPI_Wait(a, b) SMPI_MPI_Wait(a, b) #define MPI_Comm_split(a, b, c, d) SMPI_MPI_Comm_split(a, b, c, d) // SMPI Functions @@ -108,6 +109,7 @@ XBT_PUBLIC(int) SMPI_MPI_Recv(void *buf, int count, MPI_Datatype datatype, int s XBT_PUBLIC(int) SMPI_MPI_Isend(void *buf, int count, MPI_Datatype datatype, int dst, int tag, MPI_Comm comm, MPI_Request *request); XBT_PUBLIC(int) SMPI_MPI_Send(void *buf, int count, MPI_Datatype datatype, int dst, int tag, MPI_Comm comm); XBT_PUBLIC(int) SMPI_MPI_Bcast(void *buf, int count, MPI_Datatype datatype, int root, MPI_Comm comm); +XBT_PUBLIC(int) SMPI_MPI_Wait(MPI_Request *request, MPI_Status *status); XBT_PUBLIC(int) SMPI_MPI_Comm_split(MPI_Comm comm, int color, int key, MPI_Comm *comm_out); // smpi functions -- 2.20.1