| 546 | |
| 547 | static double dist_now_sec(void) { |
| 548 | struct timespec ts; |
| 549 | clock_gettime(CLOCK_MONOTONIC, &ts); |
| 550 | return (double)ts.tv_sec + (double)ts.tv_nsec / 1000000000.0; |
| 551 | } |
nothing calls this directly
no outgoing calls
no test coverage detected