| 418 | } |
| 419 | |
| 420 | mi_msecs_t _mi_clock_now(void) { |
| 421 | LARGE_INTEGER t; |
| 422 | QueryPerformanceCounter(&t); |
| 423 | return mi_to_msecs(t); |
| 424 | } |
| 425 | #else |
| 426 | #include <time.h> |
| 427 | #if defined(CLOCK_REALTIME) || defined(CLOCK_MONOTONIC) |
no test coverage detected