| 87 | } |
| 88 | |
| 89 | uint64_t cbm_now_ns(void) { |
| 90 | LARGE_INTEGER freq, count; |
| 91 | QueryPerformanceFrequency(&freq); |
| 92 | QueryPerformanceCounter(&count); |
| 93 | return (uint64_t)count.QuadPart * 1000000000ULL / (uint64_t)freq.QuadPart; |
| 94 | } |
| 95 | |
| 96 | #define CBM_USEC_PER_SEC 1000000ULL |
| 97 |
no outgoing calls
no test coverage detected