18 строки
372 B
C
18 строки
372 B
C
|
/*
|
||
|
* $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_shared = PMPI_File_write_shared
|
||
|
#endif
|
||
|
|
||
|
int MPI_File_write_shared(MPI_File fh, void *buf, int count,
|
||
|
MPI_Datatype datatype, MPI_Status *status) {
|
||
|
return MPI_SUCCESS;
|
||
|
}
|