]> Cypherpunks repositories - gostls13.git/commitdiff
os/signal: not on windows
authorRuss Cox <rsc@golang.org>
Wed, 21 Dec 2011 13:20:25 +0000 (08:20 -0500)
committerRuss Cox <rsc@golang.org>
Wed, 21 Dec 2011 13:20:25 +0000 (08:20 -0500)
R=golang-dev
CC=golang-dev
https://golang.org/cl/5500061

src/pkg/os/signal/signal.go
src/pkg/os/signal/signal_test.go

index bbf9d17289f9e680953f61c5ab2fd4a795ccca2e..bce4530e7bc73c2a05fc65f83f9ea4c5ba079551 100644 (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.
index 8445a7846037ce6d4712e8790bde165b1a640ff4..4568aa9518e7b538fbf569ca92c1664eaec3d652 100644 (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