request_free Subroutine

private subroutine request_free(this)

Type Bound

request_t

Arguments

Type IntentOptional Attributes Name
class(request_t), intent(inout) :: this

Source Code

   subroutine request_free(this)
      class(request_t), intent(inout) :: this
      this%m_request = MPI_REQUEST_NULL
      this%is_valid = .false.
   end subroutine request_free