| 78 | }; |
| 79 | |
| 80 | void QueryPerformanceCounter(LARGE_INTEGER *dst) { |
| 81 | struct timeval t; |
| 82 | gettimeofday (& t, nullptr); |
| 83 | dst->QuadPart = t.tv_sec * 1000000LL + t.tv_usec; |
| 84 | } |
| 85 | |
| 86 | void QueryPerformanceFrequency(LARGE_INTEGER *dst) { |
| 87 | dst->QuadPart = 1000000LL; |
no outgoing calls
no test coverage detected