Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Rob Latham
MPICH-BlueGene
Commits
0d103394
Commit
0d103394
authored
Sep 13, 2011
by
William Gropp
Browse files
[svn-r9010] Fix for #1528 - Need to use PMPI instead of MPI routine for status conversion
parent
137dff0a
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/mpi/pt2pt/mpir_request.c
View file @
0d103394
...
...
@@ -330,7 +330,7 @@ int MPIR_Request_get_error(MPID_Request * request_ptr)
&
ierr
);
rc
=
(
int
)
ierr
;
if
(
rc
==
MPI_SUCCESS
)
MPI_Status_f2c
(
is
,
&
request_ptr
->
status
);
P
MPI_Status_f2c
(
is
,
&
request_ptr
->
status
);
MPIU_ERR_CHKANDSTMT1
((
rc
!=
MPI_SUCCESS
),
mpi_errno
,
MPI_ERR_OTHER
,;,
"**user"
,
"**userquery %d"
,
rc
);
break
;
...
...
@@ -460,7 +460,7 @@ int MPIR_Grequest_query(MPID_Request * request_ptr)
request_ptr
->
greq_fns
->
grequest_extra_state
,
is
,
&
ierr
);
rc
=
(
int
)
ierr
;
if
(
rc
==
MPI_SUCCESS
)
MPI_Status_f2c
(
is
,
&
request_ptr
->
status
);
P
MPI_Status_f2c
(
is
,
&
request_ptr
->
status
);
MPIU_ERR_CHKANDSTMT1
((
rc
!=
MPI_SUCCESS
),
mpi_errno
,
MPI_ERR_OTHER
,
{;},
"**user"
,
"**userquery %d"
,
rc
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment