2004-01-20 06:30:33 +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-20 06:30:33 +00:00
|
|
|
|
|
|
|
#if LAM_HAVE_WEAK_SYMBOLS && LAM_PROFILING_DEFINES
|
|
|
|
#pragma weak MPI_Buffer_detach = PMPI_Buffer_detach
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int MPI_Buffer_detach(void *buffer, int *size) {
|
|
|
|
return MPI_SUCCESS;
|
|
|
|
}
|