1
1

fortran: Call PMPI from PMPI_Status_set_cancelled_f08

This is a bug which was forgotten to change in c08f97b0304.

Signed-off-by: KAWASHIMA Takahiro <t-kawashima@jp.fujitsu.com>
Этот коммит содержится в:
KAWASHIMA Takahiro 2017-12-26 15:53:12 +09:00
родитель 39d598899b
Коммит bd2fe9c324

Просмотреть файл

@ -16,12 +16,12 @@ subroutine PMPI_Status_set_cancelled_f08(status,flag,ierror)
! See note in mpi-f-interfaces-bind.h for why we include an ! See note in mpi-f-interfaces-bind.h for why we include an
! interface here and call a PMPI_* subroutine below. ! interface here and call a PMPI_* subroutine below.
interface interface
subroutine MPI_Status_set_cancelled(status, flag, ierror) subroutine PMPI_Status_set_cancelled(status, flag, ierror)
use :: mpi_f08_types, only : MPI_Status use :: mpi_f08_types, only : MPI_Status
type(MPI_Status), intent(inout) :: status type(MPI_Status), intent(inout) :: status
logical, intent(in) :: flag logical, intent(in) :: flag
integer, intent(out) :: ierror integer, intent(out) :: ierror
end subroutine MPI_Status_set_cancelled end subroutine PMPI_Status_set_cancelled
end interface end interface
call PMPI_Status_set_cancelled(status,flag,c_ierror) call PMPI_Status_set_cancelled(status,flag,c_ierror)