| 131 | } |
| 132 | |
| 133 | static inline void stopwatch_init_msecs_expire(struct stopwatch *sw, uint64_t ms) |
| 134 | { |
| 135 | stopwatch_init_usecs_expire(sw, USECS_PER_MSEC * ms); |
| 136 | } |
| 137 | |
| 138 | /* |
| 139 | * Tick the stopwatch to collect the current time. |
no test coverage detected