callstack_entry_type Derived Type

type, public :: callstack_entry_type


Components

Type Visibility Attributes Name Initial
integer, public :: routine_id = -1
real(kind=dp), public :: walltime_start = -1.0_dp
real(kind=dp), public :: energy_start = -1.0_dp

Source Code

   TYPE callstack_entry_type
      INTEGER       :: routine_id = -1
      REAL(kind=dp) :: walltime_start = -1.0_dp
      REAL(kind=dp) :: energy_start = -1.0_dp
   END TYPE callstack_entry_type