tem_debug_load_main Subroutine

public subroutine tem_debug_load_main(conf, rank)

Load the main debugger object

Arguments

Type IntentOptional Attributes Name
type(flu_State) :: conf

Lua state, to get the configuration from.

integer, intent(in), optional :: rank

Rank of the calling process.


Source Code

  subroutine tem_debug_load_main( conf, rank )
    ! ---------------------------------------------------------------------------
    !> Lua state, to get the configuration from.
    type(flu_state) :: conf
    !> Rank of the calling process.
    integer, optional, intent(in) :: rank
    ! ---------------------------------------------------------------------------

    call tem_load_debug( me = main_debug, conf = conf, rank = rank )

    ! Fill shorthand for the debug units.
    dbgUnit = main_debug%logger%funit

  end subroutine tem_debug_load_main