From 8a39ee361feb9bf46d728ff1ba4f07ca1d9610b1 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Thu, 19 Jun 2014 09:22:53 +0200 Subject: Imported Upstream version 1.3 --- src/pkg/os/doc.go | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/pkg/os/doc.go') diff --git a/src/pkg/os/doc.go b/src/pkg/os/doc.go index a954e313d..389a8eb14 100644 --- a/src/pkg/os/doc.go +++ b/src/pkg/os/doc.go @@ -39,11 +39,14 @@ func (p *Process) Kill() error { // Wait waits for the Process to exit, and then returns a // ProcessState describing its status and an error, if any. // Wait releases any resources associated with the Process. +// On most operating systems, the Process must be a child +// of the current process or an error will be returned. func (p *Process) Wait() (*ProcessState, error) { return p.wait() } // 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) } -- cgit v1.2.3