| 485 | } |
| 486 | |
| 487 | static unsigned long long _pthread_time_in_ms_from_timespec(const struct timespec *ts) |
| 488 | { |
| 489 | unsigned long long t = ts->tv_sec * 1000; |
| 490 | t += ts->tv_nsec / 1000000; |
| 491 | |
| 492 | return t; |
| 493 | } |
| 494 | |
| 495 | static unsigned long long _pthread_rel_time_in_ms(const struct timespec *ts) |
| 496 | { |
no outgoing calls
no test coverage detected