@@ -1805,18 +1805,18 @@ MPI_Request_get_status:
18051805 status: STATUS, direction=out, [status object if flag is true]
18061806MPI_Request_get_status_all:
18071807 count: ARRAY_LENGTH_NNI, lists length
1808- array_of_requests: REQUEST, direction=in, length=count, [array of requests]
1808+ array_of_requests: REQUEST, constant=True, direction=in, length=count, [array of requests]
18091809 flag: LOGICAL, direction=out
18101810 array_of_statuses: STATUS, direction=out, length=*, pointer=False, [array of status objects]
18111811MPI_Request_get_status_any:
18121812 count: ARRAY_LENGTH_NNI, list length
1813- array_of_requests: REQUEST, direction=in, length=count, [array of requests]
1813+ array_of_requests: REQUEST, constant=True, direction=in, length=count, [array of requests]
18141814 index: INDEX, direction=out, [index of operation that completed or MPI_UNDEFINED if none completed]
18151815 flag: LOGICAL, direction=out, [true if one of the operations is complete]
18161816 status: STATUS, direction=out
18171817MPI_Request_get_status_some:
18181818 incount: ARRAY_LENGTH_NNI, [length of array_of_requests]
1819- array_of_requests: REQUEST, direction=in, length=incount, [array of requests]
1819+ array_of_requests: REQUEST, constant=True, direction=in, length=incount, [array of requests]
18201820 outcount: ARRAY_LENGTH, direction=out, [number of completed requests]
18211821 array_of_indices: INDEX, direction=out, length=*, [array of indices of operations that completed]
18221822 array_of_statuses: STATUS, direction=out, length=*, pointer=False, [array of status objects for operations that completed]
@@ -2070,13 +2070,13 @@ MPI_Status_f2f08:
20702070 f_status: F90_STATUS, pointer=True, constant=True, [status object declared as array]
20712071 f08_status: F08_STATUS, direction=out, [status object declared as named type]
20722072MPI_Status_get_error:
2073- status: STATUS, direction=in, [status from which to retrieve source rank]
2073+ status: STATUS, constant=True, direction=in, [status from which to retrieve source rank]
20742074 error: ERROR_CODE, direction=out, [error set in the MPI_ERROR field]
20752075MPI_Status_get_source:
2076- status: STATUS, direction=in, [status from which to retrieve source rank]
2076+ status: STATUS, constant=True, direction=in, [status from which to retrieve source rank]
20772077 source: RANK, direction=out, [rank set in the MPI_SOURCE field]
20782078MPI_Status_get_tag:
2079- status: STATUS, direction=in, [status from which to retrieve source rank]
2079+ status: STATUS, constant=True, direction=in, [status from which to retrieve source rank]
20802080 tag: TAG, direction=out, [tag set in the MPI_TAG field]
20812081MPI_Status_set_error:
20822082 status: STATUS, direction=inout, [status with which to associate error]
0 commit comments