1
1
This commit was SVN r2730.
Этот коммит содержится в:
Vishal Sahay 2004-09-16 19:54:13 +00:00
родитель f6dc129754
Коммит 88ee7c2715
4 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -60,6 +60,8 @@ void mpi_iprobe_f(MPI_Fint *source, MPI_Fint *tag, MPI_Fint *comm,
#endif
OMPI_SINGLE_NAME_DECL(flag);
c_comm = MPI_Comm_f2c (*comm);
/* Only check for the bad value if we're checking MPI parameters */
if (MPI_PARAM_CHECK) {
@ -88,8 +90,6 @@ void mpi_iprobe_f(MPI_Fint *source, MPI_Fint *tag, MPI_Fint *comm,
#endif
}
c_comm = MPI_Comm_f2c (*comm);
*ierr = OMPI_INT_2_FINT(MPI_Iprobe(OMPI_FINT_2_INT(*source),
OMPI_FINT_2_INT(*tag),
c_comm, OMPI_SINGLE_NAME_CONVERT(flag),

Просмотреть файл

@ -52,7 +52,7 @@ void mpi_scatter_f(char *sendbuf, MPI_Fint *sendcount,
MPI_Fint *root, MPI_Fint *comm, MPI_Fint *ierr)
{
MPI_Datatype c_sendtype, c_recvtype;
MPI_Comm c_comm;
MPI_Comm c_comm = MPI_Comm_f2c(*comm);
c_sendtype = MPI_Type_f2c(*sendtype);
c_recvtype = MPI_Type_f2c(*recvtype);

Просмотреть файл

@ -49,7 +49,7 @@ OMPI_GENERATE_F77_BINDINGS (MPI_STATUS_SET_ELEMENTS,
void mpi_status_set_elements_f(MPI_Fint *status, MPI_Fint *datatype,
MPI_Fint *count, MPI_Fint *ierr)
{
MPI_Datatype c_type;
MPI_Datatype c_type = MPI_Type_f2c(*datatype);
MPI_Status c_status;
MPI_Status_f2c( status, &c_status );

Просмотреть файл

@ -117,7 +117,7 @@ int ompi_fortran_multiple_argvs_f2c(int count, char *array, int len,
{
char ***argv_array;
int i;
char *current_array;
char *current_array = array;
int ret;
argv_array = (char ***) malloc (count * sizeof(char **));