| 35 | ) |
| 36 | |
| 37 | type ProcessMonitor struct { |
| 38 | PCN garlic.CnConn |
| 39 | |
| 40 | // NotifyChannels PID -> exit code channel |
| 41 | NotifyChannels map[uint32]chan uint32 |
| 42 | sync.RWMutex |
| 43 | } |
| 44 | |
| 45 | func NewProcessMonitor() *ProcessMonitor { |
| 46 | var cn garlic.CnConn |
nothing calls this directly
no outgoing calls
no test coverage detected