13 lines
235 B
Go
13 lines
235 B
Go
//go:build !linux && !darwin && !windows
|
|
|
|
package subprocess
|
|
|
|
import (
|
|
"fmt"
|
|
"runtime"
|
|
)
|
|
|
|
func newOwnedProcessTree() (ownedProcessTree, error) {
|
|
return nil, fmt.Errorf("owned subprocess trees are unsupported on %s", runtime.GOOS)
|
|
}
|