| 2887 | } |
| 2888 | |
| 2889 | static void |
| 2890 | progress_report(ClientData client_data __attribute__((unused)), struct timeval *nowP __attribute__((unused))) |
| 2891 | { |
| 2892 | float elapsed; |
| 2893 | |
| 2894 | elapsed = delta_timeval(&start_at, nowP) / 1000000.0; |
| 2895 | (void)fprintf(stderr, "--- %g secs, %d fetches started, %d completed, %d current\n", elapsed, fetches_started, fetches_completed, |
| 2896 | num_connections); |
| 2897 | } |
| 2898 | |
| 2899 | static void |
| 2900 | start_timer(ClientData client_data __attribute__((unused)), struct timeval *nowP __attribute__((unused))) |
nothing calls this directly
no test coverage detected