2004-01-26 01:07:54 +03:00
|
|
|
/*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "lam_config.h"
|
|
|
|
|
|
|
|
#include "mpi.h"
|
|
|
|
#include "mpi/interface/c/bindings.h"
|
2004-02-11 01:15:55 +03:00
|
|
|
#include "lam/lfc/lam_list.h"
|
2004-02-02 01:28:20 +03:00
|
|
|
#include "mpi/info/info.h"
|
2004-01-26 01:07:54 +03:00
|
|
|
|
|
|
|
#if LAM_HAVE_WEAK_SYMBOLS && LAM_PROFILING_DEFINES
|
|
|
|
#pragma weak MPI_Info_f2c = PMPI_Info_f2c
|
|
|
|
#endif
|
|
|
|
|
2004-02-02 01:28:20 +03:00
|
|
|
/**
|
|
|
|
* Converts the MPI_Fint info into a valid C MPI_Info handle
|
|
|
|
*
|
|
|
|
* @param info Integer handle to an MPI_INFO object
|
|
|
|
* @retval C handle corresponding to MPI_INFOO object
|
|
|
|
*/
|
2004-01-26 01:07:54 +03:00
|
|
|
MPI_Info MPI_Info_f2c(MPI_Fint info) {
|
|
|
|
return (MPI_Info)0;
|
|
|
|
}
|