We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 926af42 commit 94f9806Copy full SHA for 94f9806
ompi/mpi/c/start.c
@@ -78,7 +78,8 @@ int MPI_Start(MPI_Request *request)
78
case OMPI_REQUEST_PML:
79
case OMPI_REQUEST_COLL:
80
case OMPI_REQUEST_PART:
81
- if ( MPI_PARAM_CHECK && !(*request)->req_persistent) {
+ if ( MPI_PARAM_CHECK && !((*request)->req_persistent &&
82
+ OMPI_REQUEST_INACTIVE == (*request)->req_state)) {
83
return OMPI_ERRHANDLER_NOHANDLE_INVOKE(MPI_ERR_REQUEST, FUNC_NAME);
84
}
85
0 commit comments