Receive character array from specified node
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(inout) | :: | array | |||
integer, | intent(in) | :: | size | |||
integer, | intent(in) | :: | from |
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