Codebase list golang-github-hashicorp-go-reap / HEAD reap.go
HEAD

Tree @HEAD (Download .tar.gz)

reap.go @HEADraw · history · blame

1
2
3
4
5
6
7
8
package reap

// ErrorCh is an error channel that lets you know when an error was
// encountered while reaping child processes.
type ErrorCh chan error

// PidCh returns the process IDs of reaped child processes.
type PidCh chan int