| 40 | /* fake microseconds as cycles if cycles isn't available */ |
| 41 | |
| 42 | static inline double timer_tracker_frequency() |
| 43 | { |
| 44 | #if (MY_TIMER_ROUTINE_CYCLES) |
| 45 | return static_cast<double>(sys_timer_info.cycles.frequency); |
| 46 | #else |
| 47 | return static_cast<double>(sys_timer_info.microseconds.frequency); |
| 48 | #endif |
| 49 | } |
| 50 | |
| 51 | |
| 52 | class Gap_time_tracker; |
no outgoing calls
no test coverage detected