Wait waits/blocks until the underlying Program finished shutting down.
()
| 1207 | |
| 1208 | // Wait waits/blocks until the underlying Program finished shutting down. |
| 1209 | func (p *Program) Wait() { |
| 1210 | <-p.finished |
| 1211 | } |
| 1212 | |
| 1213 | // execute writes the given sequence to the program output. |
| 1214 | func (p *Program) execute(seq string) { |
no outgoing calls