| 44 | #include "windows.h" |
| 45 | |
| 46 | static inline void getClockCount (unsigned long cc[2]) |
| 47 | { |
| 48 | LARGE_INTEGER a; |
| 49 | QueryPerformanceCounter (&a); |
| 50 | cc[0] = a.LowPart; |
| 51 | cc[1] = a.HighPart; |
| 52 | } |
| 53 | |
| 54 | |
| 55 | static inline void serialize() |
no outgoing calls
no test coverage detected