mp_get_info_handle Function

private elemental function mp_get_info_handle(info)

Type Bound

mp_info_type

Arguments

Type IntentOptional Attributes Name
class(mp_info_type), intent(in) :: info

Return Value integer


Source Code

      ELEMENTAL INTEGER FUNCTION mp_get_info_handle(info)
         CLASS(mp_info_type), INTENT(IN) :: info

#if defined(__parallel) && defined(__USE_MPI_F08)
         mp_get_info_handle = info%handle%mpi_val
#else
         mp_get_info_handle = info%handle
#endif

      END FUNCTION mp_get_info_handle