From: Alex Brainman Date: Fri, 23 May 2014 02:29:29 +0000 (+1000) Subject: os: document that Interrupt might not work on every os X-Git-Tag: go1.3rc1~49 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=05cc78d8d32f6af6fc4373e10da0b4a12f0a1ad4;p=gostls13.git os: document that Interrupt might not work on every os Fixes #6720. LGTM=bradfitz R=golang-codereviews, iant, bradfitz CC=golang-codereviews https://golang.org/cl/92340043 --- diff --git a/src/pkg/os/doc.go b/src/pkg/os/doc.go index bc700b6b45..389a8eb14c 100644 --- a/src/pkg/os/doc.go +++ b/src/pkg/os/doc.go @@ -46,6 +46,7 @@ func (p *Process) Wait() (*ProcessState, error) { } // Signal sends a signal to the Process. +// Sending Interrupt on Windows is not implemented. func (p *Process) Signal(sig Signal) error { return p.signal(sig) }