2004-01-25 02:17:43 +03:00
|
|
|
/*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "lam_config.h"
|
|
|
|
|
|
|
|
#include "mpi.h"
|
|
|
|
#include "mpi/interface/c/bindings.h"
|
|
|
|
|
|
|
|
#if LAM_HAVE_WEAK_SYMBOLS && LAM_PROFILING_DEFINES
|
|
|
|
#pragma weak MPI_File_write_at = PMPI_File_write_at
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int MPI_File_write_at(MPI_File fh, MPI_Offset offset, void *buf,
|
2004-02-12 07:21:05 +03:00
|
|
|
int count, MPI_Datatype datatype,
|
|
|
|
MPI_Status *status) {
|
2004-01-25 02:17:43 +03:00
|
|
|
return MPI_SUCCESS;
|
|
|
|
}
|