| 226 | QueryPerformanceCounter(reinterpret_cast<LARGE_INTEGER*>(pTicks)); |
| 227 | } |
| 228 | inline void query_counter_frequency(timer_ticks* pTicks) |
| 229 | { |
| 230 | QueryPerformanceFrequency(reinterpret_cast<LARGE_INTEGER*>(pTicks)); |
| 231 | } |
| 232 | #elif defined(__APPLE__) || defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__EMSCRIPTEN__) |
| 233 | #include <sys/time.h> |
| 234 | inline void query_counter(timer_ticks* pTicks) |