get_processor_name Subroutine

public subroutine get_processor_name(name, namelen)

Retrieves the name of the processor

Arguments

Type IntentOptional Attributes Name
character(len=*), intent(inout) :: name
integer(kind=int32), intent(out) :: namelen

Calls

proc~~get_processor_name~~CallsGraph proc~get_processor_name get_processor_name mpi_get_processor_name mpi_get_processor_name proc~get_processor_name->mpi_get_processor_name

Variables

Type Visibility Attributes Name Initial
integer(kind=int32), private :: ierr

Source Code

   subroutine get_processor_name(name, namelen)
      !! Retrieves the name of the processor
      character(len=*), intent(inout) :: name
      integer(int32), intent(out) :: namelen
      integer(int32) :: ierr

      call MPI_Get_processor_name(name, namelen, ierr)
   end subroutine get_processor_name