Codebase list golang-github-hashicorp-go-reap / 1197b713-a2e2-4d19-91da-da155e21b6a2/main reap.go
1197b713-a2e2-4d19-91da-da155e21b6a2/main

Tree @1197b713-a2e2-4d19-91da-da155e21b6a2/main (Download .tar.gz)

reap.go @1197b713-a2e2-4d19-91da-da155e21b6a2/mainraw · 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