comms_recv_char Subroutine

private subroutine comms_recv_char(array, size, from)

Receive character array from specified node

Arguments

Type IntentOptional AttributesName
character(len=*), intent(inout) :: array
integer, intent(in) :: size
integer, intent(in) :: from

Called by

proc~~comms_recv_char~~CalledByGraph proc~comms_recv_char comms_recv_char interface~comms_recv comms_recv interface~comms_recv->proc~comms_recv_char

Contents

Source Code


Source Code

  subroutine comms_recv_char(array, size, from)
    !! Receive character array from specified node
    implicit none

    character(len=*), intent(inout) :: array
    integer, intent(in)    :: size
    integer, intent(in)    :: from

#ifdef MPI
    integer :: error
    integer :: status(MPI_status_size)

    call MPI_recv(array, size, MPI_character, from, &
                  mpi_send_tag, mpi_comm_world, status, error)

    if (error .ne. MPI_success) then
      call io_error('Error in comms_recv_char')
    end if
#endif

    return

  end subroutine comms_recv_char