File: signal_legacy.go

package info (click to toggle)
golang-github-peterh-liner 0.0~git20151118.0.4d47685-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 156 kB
  • ctags: 290
  • sloc: makefile: 2
file content (11 lines) | stat: -rw-r--r-- 145 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
// +build !go1.1,!windows

package liner

import (
	"os"
)

func stopSignal(c chan<- os.Signal) {
	// signal.Stop does not exist before Go 1.1
}