| 65 | } |
| 66 | |
| 67 | static uint64_t GetClockTimeNS() |
| 68 | { |
| 69 | auto tp = GetTimePoint() - StartupTimeNS; |
| 70 | if (TimeScale == 1.0) return tp; |
| 71 | else return uint64_t(tp / 1000 * TimeScale * 1000); |
| 72 | } |
| 73 | |
| 74 | static uint64_t MSToNS(unsigned int ms) |
| 75 | { |
no test coverage detected