| 1011 | } |
| 1012 | |
| 1013 | int finish_command_in_signal(struct child_process *cmd) |
| 1014 | { |
| 1015 | int ret = wait_or_whine(cmd->pid, cmd->args.v[0], 1); |
| 1016 | if (ret != -1) |
| 1017 | trace2_child_exit(cmd, ret); |
| 1018 | return ret; |
| 1019 | } |
| 1020 | |
| 1021 | |
| 1022 | int run_command(struct child_process *cmd) |
no test coverage detected