File: reap_stub.go

package info (click to toggle)
golang-github-hashicorp-go-reap 0.0~git20160113.0.2d85522-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 124 kB
  • ctags: 18
  • sloc: makefile: 2
file content (17 lines) | stat: -rw-r--r-- 388 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// +build windows solaris

package reap

import (
	"sync"
)

// IsSupported returns true if child process reaping is supported on this
// platform. This version always returns false.
func IsSupported() bool {
	return false
}

// ReapChildren is not supported so this always returns right away.
func ReapChildren(pids PidCh, errors ErrorCh, done chan struct{}, reapLock *sync.RWMutex) {
}