set_default_error_file_unit Subroutine

public subroutine set_default_error_file_unit(unit)

Set the unit for the error file to use in this module, for example for mp_abort

Arguments

Type IntentOptional Attributes Name
integer, intent(in) :: unit

An open file unit to use as the error file


Contents


Source Code

  subroutine set_default_error_file_unit(unit)
    !> An open file unit to use as the error file
    integer, intent(in) :: unit
    err_unit = unit
  end subroutine set_default_error_file_unit