| 125 | } |
| 126 | |
| 127 | static inline void stopwatch_init_usecs_expire(struct stopwatch *sw, uint64_t us) |
| 128 | { |
| 129 | stopwatch_init(sw); |
| 130 | mono_time_add_usecs(&sw->expires, us); |
| 131 | } |
| 132 | |
| 133 | static inline void stopwatch_init_msecs_expire(struct stopwatch *sw, uint64_t ms) |
| 134 | { |
no test coverage detected