| 180 | } |
| 181 | |
| 182 | static inline int64_t stopwatch_duration_msecs(struct stopwatch *sw) |
| 183 | { |
| 184 | return stopwatch_duration_usecs(sw) / USECS_PER_MSEC; |
| 185 | } |
| 186 | |
| 187 | /* |
| 188 | * Helper macro to wait until a condition becomes true or a timeout elapses. |
no test coverage detected