| 1796 | } |
| 1797 | |
| 1798 | static void pp_output(const struct parallel_processes *pp) |
| 1799 | { |
| 1800 | size_t i = pp->output_owner; |
| 1801 | |
| 1802 | if (child_is_working(&pp->children[i]) && |
| 1803 | pp->children[i].err.len) { |
| 1804 | strbuf_write(&pp->children[i].err, stderr); |
| 1805 | strbuf_reset(&pp->children[i].err); |
| 1806 | } |
| 1807 | } |
| 1808 | |
| 1809 | static int pp_collect_finished(struct parallel_processes *pp, |
| 1810 | const struct run_process_parallel_opts *opts) |
no test coverage detected