Skip to content

Commit 05cc78d

Browse files
committed
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
1 parent 2c83f1e commit 05cc78d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/pkg/os/doc.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ func (p *Process) Wait() (*ProcessState, error) {
4646
}
4747

4848
// Signal sends a signal to the Process.
49+
// Sending Interrupt on Windows is not implemented.
4950
func (p *Process) Signal(sig Signal) error {
5051
return p.signal(sig)
5152
}

0 commit comments

Comments
 (0)