[mpich-commits] [mpich] MPICH primary repository branch, master, updated. v3.1.2-86-g5dac839
Service Account
noreply at mpich.org
Mon Aug 11 10:17:53 CDT 2014
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "MPICH primary repository".
The branch, master has been updated
via 5dac839337d807f45f46ffd8c1d3905badb2f910 (commit)
from 95cfe8a33eca95eb722a6216f997c6d7306ded98 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://git.mpich.org/mpich.git/commitdiff/5dac839337d807f45f46ffd8c1d3905badb2f910
commit 5dac839337d807f45f46ffd8c1d3905badb2f910
Author: Wesley Bland <wbland at anl.gov>
Date: Mon Aug 11 09:46:39 2014 -0500
Change the func used to poke the progress engine
Inside mpid_comm_get_all_failed_procs.c, we were using `MPIDI_CH3I_Progress`
to poke the progress engine. This isn't the right function however since the
signature is different in sock and nemesis. Now it uses `MPID_Progress_poke`
which is the correct way to do this.
Signed-off-by: Rob Latham <robl at mcs.anl.gov>
diff --git a/src/mpid/ch3/src/mpid_comm_get_all_failed_procs.c b/src/mpid/ch3/src/mpid_comm_get_all_failed_procs.c
index 882f30a..c8eb7f6 100644
--- a/src/mpid/ch3/src/mpid_comm_get_all_failed_procs.c
+++ b/src/mpid/ch3/src/mpid_comm_get_all_failed_procs.c
@@ -94,7 +94,7 @@ int MPID_Comm_get_all_failed_procs(MPID_Comm *comm_ptr, MPID_Group **failed_grou
/* Kick the progress engine in case it's been a while so we get all the
* latest updates about failures */
- MPIDI_CH3I_Progress(NULL, false);
+ MPID_Progress_poke();
/* Generate the list of failed processes */
MPIDI_CH3U_Check_for_failed_procs();
-----------------------------------------------------------------------
Summary of changes:
src/mpid/ch3/src/mpid_comm_get_all_failed_procs.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
hooks/post-receive
--
MPICH primary repository
More information about the commits
mailing list