diff options
Diffstat (limited to 'src/pkg/os/doc.go')
-rw-r--r-- | src/pkg/os/doc.go | 3 |
1 files changed, 3 insertions, 0 deletions
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) } |