add_stats Subroutine

private subroutine add_stats(fm)

Factory helper: add the built-in stats feature.

Arguments

Type IntentOptional Attributes Name
type(feature_manager_t), intent(inout) :: fm

Calls

proc~~add_stats~~CallsGraph proc~add_stats add_stats proc~fm_add feature_manager_t%fm_add proc~add_stats->proc~fm_add proc~new_stats_feature new_stats_feature proc~add_stats->proc~new_stats_feature

Called by

proc~~add_stats~~CalledByGraph proc~add_stats add_stats proc~enable_features enable_features proc~enable_features->proc~add_stats proc~watcher_init watcher_t%watcher_init proc~watcher_init->proc~enable_features

Source Code

   subroutine add_stats(fm)
      type(feature_manager_t), intent(inout) :: fm
      class(watch_feature_t), allocatable :: f
      call new_stats_feature(f)
      call fm%add(f)
   end subroutine add_stats