Enum grind_mode
Defined in File grind.h
Enum Documentation
-
enum grind_mode
The type of “grinding” to do; sets the domain for a grinder.
Values:
-
enumerator ekRCSW_GRIND_COUNT
Enable usage of grind_capture_count() to capture execution counts.
All timing related flags are ignored in this mode. All stats must be reported/cleared manually for each grindee.
-
enumerator ekRCSW_GRIND_DURATION
Enable usage of grind_capture_start() / grind_capture_end() to capture duration.
Durations are captured by (end - start) time. Execution counts of the section between grind_capture_start() and grind_capture_end() are also captured.
-
enumerator ekRCSW_GRIND_PERIOD
Enable usage of grind_capture_tick() to capture ticks.
Ticks are captured by tick= last tick - current time; this is the same as the period of the thing that is ticking. Execution counts of grind_capture_tick() are also captured.
-
enumerator ekRCSW_GRIND_COUNT