2004-01-29 21:42:40 +00:00
|
|
|
/*
|
|
|
|
* $HEADERS$
|
|
|
|
*/
|
|
|
|
#include "lam_config.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "mpi.h"
|
2004-03-17 18:45:16 +00:00
|
|
|
#include "mpi/c/bindings.h"
|
2004-01-29 21:42:40 +00:00
|
|
|
|
|
|
|
#if LAM_HAVE_WEAK_SYMBOLS && LAM_PROFILING_DEFINES
|
|
|
|
#pragma weak MPI_Send_init = PMPI_Send_init
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int MPI_Send_init(void *buf, int count, MPI_Datatype datatype,
|
|
|
|
int dest, int tag, MPI_Comm comm,
|
|
|
|
MPI_Request *request) {
|
|
|
|
return MPI_SUCCESS;
|
|
|
|
}
|