[mpich2-commits] r3930 - mpich2/trunk/src/util/multichannel
jayesh at mcs.anl.gov
jayesh at mcs.anl.gov
Tue Mar 3 16:48:28 CST 2009
Author: jayesh
Date: 2009-03-03 16:48:28 -0600 (Tue, 03 Mar 2009)
New Revision: 3930
Modified:
mpich2/trunk/src/util/multichannel/mpi.c
Log:
Fixed bug in type cast for MPIR_Keyval_set_proxy() in windows binding lib
Modified: mpich2/trunk/src/util/multichannel/mpi.c
===================================================================
--- mpich2/trunk/src/util/multichannel/mpi.c 2009-03-03 22:11:52 UTC (rev 3929)
+++ mpich2/trunk/src/util/multichannel/mpi.c 2009-03-03 22:48:28 UTC (rev 3930)
@@ -1656,7 +1656,7 @@
fn.PMPI_Type_create_f90_complex = (int (*)( int, int, MPI_Datatype * ))GetProcAddress(hPMPIModule, "PMPI_Type_create_f90_complex");
/* Extra exported internal symbols */
- fn.MPIR_Keyval_set_proxy = (void (*)(int))GetProcAddress(hPMPIModule, "MPIR_Keyval_set_proxy");
+ fn.MPIR_Keyval_set_proxy = (void (*)(int ,MPID_Attr_copy_proxy ,MPID_Attr_delete_proxy ))GetProcAddress(hPMPIModule, "MPIR_Keyval_set_proxy");
fn.MPIR_Keyval_set_fortran = (void (*)(int))GetProcAddress(hPMPIModule, "MPIR_Keyval_set_fortran");
fn.MPIR_Keyval_set_fortran90 = (void (*)(int))GetProcAddress(hPMPIModule, "MPIR_Keyval_set_fortran90");
fn.MPIR_Grequest_set_lang_f77 = (void (*)(MPI_Request))GetProcAddress(hPMPIModule, "MPIR_Grequest_set_lang_f77");
More information about the mpich2-commits
mailing list