1
0
mirror of https://github.com/golang/go synced 2024-09-24 07:20:14 -06:00

os/signal: not on windows

R=golang-dev
CC=golang-dev
https://golang.org/cl/5500061
This commit is contained in:
Russ Cox 2011-12-21 08:20:25 -05:00
parent 0fcb24b91c
commit 8feab4d5f7
2 changed files with 4 additions and 2 deletions

View File

@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build darwin freebsd linux netbsd openbsd windows
// +build darwin freebsd linux netbsd openbsd
// Package signal implements operating system-independent signal handling.
package signal
@ -33,3 +33,5 @@ func init() {
Incoming = ch
go process(ch)
}
// BUG(rsc): This package is unavailable on Plan 9 and Windows.

View File

@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build darwin freebsd linux netbsd openbsd windows
// +build darwin freebsd linux netbsd openbsd
package signal