github.com/outbrain/consul@v1.4.5/agent/proxyprocess/exitstatus_other.go (about) 1 // +build !darwin,!linux,!windows 2 3 package proxyprocess 4 5 import "os" 6 7 // exitStatus for other platforms where we don't know how to extract it. 8 func exitStatus(ps *os.ProcessState) (int, bool) { 9 return 0, false 10 }