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.


Calls

proc~~tem_debug_load_main~~CallsGraph proc~tem_debug_load_main tem_debug_load_main proc~tem_load_debug tem_load_debug proc~tem_debug_load_main->proc~tem_load_debug proc~aot_table_open aot_table_open proc~tem_load_debug->proc~aot_table_open proc~tem_horizontalspacer tem_horizontalSpacer proc~tem_load_debug->proc~tem_horizontalspacer proc~tem_logging_load tem_logging_load proc~tem_load_debug->proc~tem_logging_load proc~aot_table_close aot_table_close proc~tem_load_debug->proc~aot_table_close proc~aot_get_val aot_get_val proc~tem_load_debug->proc~aot_get_val interface~tem_logging_init tem_logging_init proc~tem_load_debug->interface~tem_logging_init proc~aot_get_val~2 aot_get_val proc~tem_logging_load->proc~aot_get_val~2 proc~tem_logging_init_logger tem_logging_init_logger proc~tem_logging_load->proc~tem_logging_init_logger proc~tem_logging_init_primary tem_logging_init_primary proc~tem_logging_load->proc~tem_logging_init_primary interface~tem_logging_init->proc~tem_logging_init_logger interface~tem_logging_init->proc~tem_logging_init_primary proc~newunit newunit proc~tem_logging_init_logger->proc~newunit proc~tem_connect_tonull tem_connect_toNull proc~tem_logging_init_logger->proc~tem_connect_tonull proc~tem_logging_init_primary->proc~tem_logging_init_logger

Contents

Source Code


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