github.com/axw/llgo@v0.0.0-20160805011314-95b5fe4dca20/third_party/liner/signal_legacy.go (about)

     1  // +build !go1.1,!windows
     2  
     3  package liner
     4  
     5  import (
     6  	"os"
     7  )
     8  
     9  func stopSignal(c chan<- os.Signal) {
    10  	// signal.Stop does not exist before Go 1.1
    11  }