| 1340 | pipe_command* next; // Left-most command for the right-most command. |
| 1341 | |
| 1342 | pipe_command (bool serial, bool no_diag_buffer, |
| 1343 | const command& c, |
| 1344 | const optional<deadline>& d, |
| 1345 | const location& l, |
| 1346 | pipe_command* p, |
| 1347 | pipe_command* f) |
| 1348 | : cmd (c), |
| 1349 | dl (d), |
| 1350 | dbuf (serial, no_diag_buffer), |
| 1351 | loc (l), |
| 1352 | prev (p), next (f) {} |
| 1353 | }; |
| 1354 | |
| 1355 | // Wait for a process/builtin to complete until the deadline is reached |
nothing calls this directly
no outgoing calls
no test coverage detected