github.com/Aestek/consul@v1.2.4-0.20190309222502-b2c31e33971a/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  }