[mpich-commits] [mpich] MPICH primary repository branch, master, updated. v3.2a2-22-gcff52d1

Service Account noreply at mpich.org
Wed Nov 26 13:16:10 CST 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  cff52d18350ea48bf03fd5badc6b800866028be7 (commit)
      from  dc1eb333f5961cdba9d952ff5017c0d06625d9e8 (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/cff52d18350ea48bf03fd5badc6b800866028be7

commit cff52d18350ea48bf03fd5badc6b800866028be7
Author: Wesley Bland <wbland at anl.gov>
Date:   Tue Nov 25 21:55:42 2014 -0500

    MPID_Request_is_pending_failure always returns 0 in pamid
    
    Since pamid doesn't include any of the fault tolerance functions, it
    should never say that a message is pending failure. We also can't call
    abort in here since the function is usind at the MPI layer.
    
    Signed-off-by: Paul Coffman <pkcoff at us.ibm.com>

diff --git a/src/mpid/pamid/src/misc/mpid_unimpl.c b/src/mpid/pamid/src/misc/mpid_unimpl.c
index c43e10e..0bd954b 100644
--- a/src/mpid/pamid/src/misc/mpid_unimpl.c
+++ b/src/mpid/pamid/src/misc/mpid_unimpl.c
@@ -104,6 +104,7 @@ int MPID_Comm_revoke(MPID_Comm *comm_ptr, int is_remote)
 
 int MPID_Request_is_pending_failure(MPID_Request *request_ptr)
 {
-  MPID_abort();
+  /* This function is necessary for MPICH to work correctly so it must always
+   * return 0. */
   return 0;
 }

-----------------------------------------------------------------------

Summary of changes:
 src/mpid/pamid/src/misc/mpid_unimpl.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
MPICH primary repository


More information about the commits mailing list