feat_after_noop Subroutine

private subroutine feat_after_noop(self, exitstat, seconds)

No-op callback invoked after executing the command.

Type Bound

watch_feature_t

Arguments

Type IntentOptional Attributes Name
class(watch_feature_t), intent(inout) :: self
integer, intent(in) :: exitstat
real, intent(in) :: seconds

Called by

proc~~feat_after_noop~~CalledByGraph proc~feat_after_noop watch_feature_t%feat_after_noop proc~on_after_run_all feature_manager_t%on_after_run_all proc~on_after_run_all->proc~feat_after_noop proc~run_once run_once proc~run_once->proc~on_after_run_all proc~watcher_run watcher_t%watcher_run proc~watcher_run->proc~on_after_run_all proc~watcher_init watcher_t%watcher_init proc~watcher_init->proc~run_once

Source Code

   subroutine feat_after_noop(self, exitstat, seconds)
      class(watch_feature_t), intent(inout) :: self
      integer, intent(in) :: exitstat
      real,    intent(in) :: seconds
      if (.false.) then
         if (exitstat /= 0) continue
         if (seconds < 0.0) continue
      end if
   end subroutine feat_after_noop