2004-01-25 22:07:54 +00:00
|
|
|
/*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "lam_config.h"
|
|
|
|
|
|
|
|
#include "mpi.h"
|
2004-03-17 18:45:16 +00:00
|
|
|
#include "mpi/c/bindings.h"
|
2004-01-25 22:07:54 +00:00
|
|
|
|
|
|
|
#if LAM_HAVE_WEAK_SYMBOLS && LAM_PROFILING_DEFINES
|
|
|
|
#pragma weak MPI_Iprobe = PMPI_Iprobe
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int MPI_Iprobe(int source, int tag, MPI_Comm comm, int *flag,
|
|
|
|
MPI_Status *status) {
|
|
|
|
return MPI_SUCCESS;
|
|
|
|
}
|