| 706 | } |
| 707 | |
| 708 | static void log_extract_done(int pos, uint64_t ms, int defs, const char *path) { |
| 709 | if (pos < PP_LOG_THRESH || ms > PP_TIMER_THRESH) { |
| 710 | cbm_log_info("parallel.extract.file.done", "pos", itoa_log(pos), "elapsed_ms", |
| 711 | itoa_log((int)ms), "defs", itoa_log(defs), "path", path); |
| 712 | } |
| 713 | } |
| 714 | |
| 715 | static void extract_worker(int worker_id, void *ctx_ptr) { |
| 716 | extract_ctx_t *ec = ctx_ptr; |
no test coverage detected