*** Submitted as http://code.google.com/p/go/source/detail?r=ffa7e53815de *** os/signal: not on windows R=golang-dev CC=golang-dev http://codereview.appspot.com/5500061
13 years, 7 months ago
(2011-12-21 13:20:29 UTC)
#2
LGTM On Dec 21, 2011 5:20 AM, <rsc@golang.org> wrote: > Reviewers: golang-dev_googlegroups.com, > > Message: ...
13 years, 7 months ago
(2011-12-21 15:53:51 UTC)
#3
LGTM
On Dec 21, 2011 5:20 AM, <rsc@golang.org> wrote:
> Reviewers: golang-dev_googlegroups.com,
>
> Message:
> Hello golang-dev (cc: golang-dev@googlegroups.com),
>
> I'd like you to review this change to
> https://go.googlecode.com/hg/
>
>
> Description:
> os/signal: not on windows
>
> Please review this at
http://codereview.appspot.com/**5500061/<http://codereview.appspot.com/5500061/>
>
> Affected files:
> M src/pkg/os/signal/signal.go
> M src/pkg/os/signal/signal_test.**go
>
>
> Index: src/pkg/os/signal/signal.go
> ==============================**==============================**=======
> --- a/src/pkg/os/signal/signal.go
> +++ b/src/pkg/os/signal/signal.go
> @@ -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 @@
> Incoming = ch
> go process(ch)
> }
> +
> +// BUG(rsc): This package is unavailable on Plan 9 and Windows.
> Index: src/pkg/os/signal/signal_test.**go
> ==============================**==============================**=======
> --- a/src/pkg/os/signal/signal_**test.go
> +++ b/src/pkg/os/signal/signal_**test.go
> @@ -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
>
>
>
>
Issue 5500061: code review 5500061: os/signal: not on windows
(Closed)
Created 13 years, 7 months ago by rsc
Modified 13 years, 7 months ago
Reviewers: bradfitz
Base URL:
Comments: 0