ChildTracker manages spawned child worker processes
| 26 | |
| 27 | // ChildTracker manages spawned child worker processes |
| 28 | type ChildTracker struct { |
| 29 | mu sync.RWMutex |
| 30 | children map[int]*ChildProcess // Keyed by PID |
| 31 | } |
| 32 | |
| 33 | // NewChildTracker creates a new child tracker |
| 34 | func NewChildTracker() *ChildTracker { |
nothing calls this directly
no outgoing calls
no test coverage detected