open-consul/agent/proxyprocess/exitstatus_other.go

11 lines
213 B
Go

// +build !darwin,!linux,!windows
package proxyprocess
import "os"
// exitStatus for other platforms where we don't know how to extract it.
func exitStatus(ps *os.ProcessState) (int, bool) {
return 0, false
}