[mpich-commits] [mpich] MPICH primary repository branch, master, updated. v3.1-153-g59afcee
Service Account
noreply at mpich.org
Mon Apr 14 19:25:02 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 59afcee791229fa9293ac1aba1d1b2fd02537b30 (commit)
from d7de532de5e6a24217fe34005552c165f1f8ee2c (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/59afcee791229fa9293ac1aba1d1b2fd02537b30
commit 59afcee791229fa9293ac1aba1d1b2fd02537b30
Author: Ken Raffenetti <raffenet at mcs.anl.gov>
Date: Mon Apr 14 15:53:32 2014 -0500
correct validation of MPI_Info handle
MPIR_ERRTEST_ARGNULL is incorrect for validating an MPI_Info
handle, since MPI_INFO_NULL is not defined as 0. This updates the
test in MPI_Comm_set_info to match the one in MPI_Win_set_info.
Patch originally from thakur at mcs.anl.gov
diff --git a/src/mpi/comm/comm_set_info.c b/src/mpi/comm/comm_set_info.c
index 5afbc61..18df251 100644
--- a/src/mpi/comm/comm_set_info.c
+++ b/src/mpi/comm/comm_set_info.c
@@ -109,7 +109,7 @@ int MPI_Comm_set_info(MPI_Comm comm, MPI_Info info)
{
MPID_BEGIN_ERROR_CHECKS;
{
- MPIR_ERRTEST_ARGNULL(info, "info", mpi_errno);
+ MPIR_ERRTEST_INFO(info, mpi_errno);
}
MPID_END_ERROR_CHECKS;
}
-----------------------------------------------------------------------
Summary of changes:
src/mpi/comm/comm_set_info.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
hooks/post-receive
--
MPICH primary repository
More information about the commits
mailing list