| 124 | } |
| 125 | |
| 126 | static struct command_result *clean_finished_one(struct clean_info *cinfo) |
| 127 | { |
| 128 | assert(cinfo->cleanup_reqs_remaining != 0); |
| 129 | if (--cinfo->cleanup_reqs_remaining > 0) |
| 130 | return command_still_pending(cinfo->cmd); |
| 131 | |
| 132 | return clean_finished(cinfo); |
| 133 | } |
| 134 | |
| 135 | struct del_data { |
| 136 | enum subsystem subsystem; |
no test coverage detected