| 7 | ) |
| 8 | |
| 9 | type process struct { |
| 10 | id string |
| 11 | |
| 12 | processInputStream *processStream |
| 13 | done bool |
| 14 | exitStatus int |
| 15 | exitErr error |
| 16 | doneL *sync.Cond |
| 17 | } |
| 18 | |
| 19 | func newProcess(id string, processInputStream *processStream) *process { |
| 20 | return &process{ |
nothing calls this directly
no outgoing calls
no test coverage detected