tem_timer_loadconfig_glob Subroutine

public subroutine tem_timer_loadconfig_glob(conf, parent)

Load the configuration for the global (module) timer.

Arguments

Type IntentOptional Attributes Name
type(flu_State) :: conf

Timer configuration to load from the Lua configuration script. Handle to the Lua configuration script.

integer, intent(in), optional :: parent

Handle of the table containing the requested table.


Calls

proc~~tem_timer_loadconfig_glob~~CallsGraph proc~tem_timer_loadconfig_glob tem_timer_loadconfig_glob proc~tem_timer_loadconfig tem_timer_loadconfig proc~tem_timer_loadconfig_glob->proc~tem_timer_loadconfig aot_get_val aot_get_val proc~tem_timer_loadconfig->aot_get_val aot_table_close aot_table_close proc~tem_timer_loadconfig->aot_table_close aot_table_first aot_table_first proc~tem_timer_loadconfig->aot_table_first aot_table_open aot_table_open proc~tem_timer_loadconfig->aot_table_open aot_table_top aot_table_top proc~tem_timer_loadconfig->aot_table_top flu_next flu_next proc~tem_timer_loadconfig->flu_next interface~append~29 append proc~tem_timer_loadconfig->interface~append~29 proc~upper_to_lower upper_to_lower proc~tem_timer_loadconfig->proc~upper_to_lower proc~append_da_label append_da_label interface~append~29->proc~append_da_label proc~append_da_veclabel append_da_veclabel interface~append~29->proc~append_da_veclabel interface~expand~27 expand proc~append_da_label->interface~expand~27 interface~sortedposofval~5 sortedposofval proc~append_da_label->interface~sortedposofval~5 proc~append_da_veclabel->interface~expand~27

Called by

proc~~tem_timer_loadconfig_glob~~CalledByGraph proc~tem_timer_loadconfig_glob tem_timer_loadconfig_glob proc~tem_load_general tem_load_general proc~tem_load_general->proc~tem_timer_loadconfig_glob

Source Code

  subroutine tem_timer_loadconfig_glob(conf, parent)
    ! -------------------------------------------------------------------- !
    !> Timer configuration to load from the Lua configuration script.
    !> Handle to the Lua configuration script.
    type(flu_state) :: conf
    !> Handle of the table containing the requested table.
    integer, intent(in), optional :: parent
    ! -------------------------------------------------------------------- !

    call tem_timer_loadconfig( timer_config = timer%config, &
      &                        conf         = conf,         &
      &                        parent       = parent        )

   end subroutine tem_timer_loadconfig_glob