Codebase list golang-github-hashicorp-go-reap / buster-backports/main reap.go
buster-backports/main

Tree @buster-backports/main (Download .tar.gz)

reap.go @buster-backports/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