timer_env_type Derived Type

type, public :: timer_env_type


Components

Type Visibility Attributes Name Initial
integer, public :: ref_count
type(dict_str_i4_type), public :: routine_names
type(list_routinestat_type), public :: routine_stats
type(list_callstackentry_type), public :: callstack
type(dict_i4tuple_callstat_type), public :: callgraph
integer, public :: trace_max
integer, public :: trace_unit
character(len=13), public :: trace_str
logical, public :: trace_all

Source Code

   TYPE timer_env_type
      INTEGER                                          :: ref_count
      TYPE(dict_str_i4_type)                           :: routine_names
      TYPE(list_routinestat_type)                      :: routine_stats
      TYPE(list_callstackentry_type)                   :: callstack
      TYPE(dict_i4tuple_callstat_type)                 :: callgraph
      INTEGER                                          :: trace_max
      INTEGER                                          :: trace_unit
      CHARACTER(len=13)                                :: trace_str
      LOGICAL                                          :: trace_all
   END TYPE timer_env_type