[mpich2-commits] r3977 - mpich2/trunk/src/mpi/coll
balaji at mcs.anl.gov
balaji at mcs.anl.gov
Sun Mar 8 22:11:30 CDT 2009
Author: balaji
Date: 2009-03-08 22:11:30 -0500 (Sun, 08 Mar 2009)
New Revision: 3977
Modified:
mpich2/trunk/src/mpi/coll/helper_fns.c
Log:
Fixed the wrong state macro used in the new MPIC_Ssend function.
Modified: mpich2/trunk/src/mpi/coll/helper_fns.c
===================================================================
--- mpich2/trunk/src/mpi/coll/helper_fns.c 2009-03-09 02:02:46 UTC (rev 3976)
+++ mpich2/trunk/src/mpi/coll/helper_fns.c 2009-03-09 03:11:30 UTC (rev 3977)
@@ -104,9 +104,9 @@
int mpi_errno, context_id;
MPID_Request *request_ptr=NULL;
MPID_Comm *comm_ptr=NULL;
- MPIDI_STATE_DECL(MPID_STATE_MPIC_SEND);
+ MPIDI_STATE_DECL(MPID_STATE_MPIC_SSEND);
- MPIDI_PT2PT_FUNC_ENTER_FRONT(MPID_STATE_MPIC_SEND);
+ MPIDI_PT2PT_FUNC_ENTER_FRONT(MPID_STATE_MPIC_SSEND);
MPID_Comm_get_ptr( comm, comm_ptr );
context_id = (comm_ptr->comm_kind == MPID_INTRACOMM) ?
@@ -121,7 +121,7 @@
MPID_Request_release(request_ptr);
}
fn_exit:
- MPIDI_PT2PT_FUNC_EXIT(MPID_STATE_MPIC_SEND);
+ MPIDI_PT2PT_FUNC_EXIT(MPID_STATE_MPIC_SSEND);
return mpi_errno;
fn_fail:
if (request_ptr) {
More information about the mpich2-commits
mailing list