2004-01-24 23:17:43 +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-24 23:17:43 +00:00
|
|
|
|
|
|
|
#if LAM_HAVE_WEAK_SYMBOLS && LAM_PROFILING_DEFINES
|
|
|
|
#pragma weak MPI_File_read_at = PMPI_File_read_at
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int MPI_File_read_at(MPI_File fh, MPI_Offset offset, void *buf,
|
|
|
|
int count, MPI_Datatype datatype, MPI_Status *status) {
|
|
|
|
|
|
|
|
return MPI_SUCCESS;
|
|
|
|
}
|