| 476 | } |
| 477 | |
| 478 | static unsigned long long _pthread_time_in_ms(void) |
| 479 | { |
| 480 | struct __timeb64 tb; |
| 481 | |
| 482 | _ftime64_s(&tb); |
| 483 | |
| 484 | return tb.time * 1000 + tb.millitm; |
| 485 | } |
| 486 | |
| 487 | static unsigned long long _pthread_time_in_ms_from_timespec(const struct timespec *ts) |
| 488 | { |
no outgoing calls
no test coverage detected